001/**
002 * Logback: the reliable, generic, fast and flexible logging framework.
003 * Copyright (C) 1999-2015, QOS.ch. All rights reserved.
004 *
005 * This program and the accompanying materials are dual-licensed under
006 * either the terms of the Eclipse Public License v1.0 as published by
007 * the Eclipse Foundation
008 *
009 *   or (per the licensee's choosing)
010 *
011 * under the terms of the GNU Lesser General Public License version 2.1
012 * as published by the Free Software Foundation.
013 */
014package ch.qos.logback.access.html;
015
016import ch.qos.logback.core.html.CssBuilder;
017
018/**
019 * This class helps the HTMLLayout build the CSS link. It either provides the
020 * HTMLLayout with a default css file, or builds the link to an external,
021 * user-specified, file.
022 *
023 * @author Sébastien Pennec
024 */
025public class UrlCssBuilder implements CssBuilder {
026
027    String url = "http://logback.qos.ch/css/access.css";
028
029    public String getUrl() {
030        return url;
031    }
032
033    public void setUrl(String url) {
034        this.url = url;
035    }
036
037    @Override
038    public void addCss(StringBuilder sbuf) {
039        sbuf.append("<link REL=StyleSheet HREF=\"");
040        sbuf.append(url);
041        sbuf.append("\" TITLE=\"Basic\" />");
042    }
043}