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.core.joran;
015
016/**
017 *
018 * This class contains constants used by Joran components.
019 * 
020 * @author Ceki Gülcü
021 *
022 */
023public abstract class JoranConstants {
024    public static final String INCLUDED_TAG = "included";
025    public static final String CONFIGURATION_TAG = "configuration";
026
027    public static final String INCLUDE_TAG = "include";
028
029    public static final String APPENDER_TAG = "appender";
030    public static final String REF_ATTRIBUTE = "ref";
031    public static final String ADDITIVITY_ATTRIBUTE = "additivity";
032    public static final String LEVEL_ATTRIBUTE = "level";
033    public static final String CONVERTER_CLASS_ATTRIBUTE = "converterClass";
034    public static final String CONVERSION_WORD_ATTRIBUTE = "conversionWord";
035    public static final String PATTERN_ATTRIBUTE = "pattern";
036    public static final String VALUE_ATTR = "value";
037    public static final String ACTION_CLASS_ATTRIBUTE = "actionClass";
038
039    public static final String INHERITED = "INHERITED";
040    public static final String NULL = "NULL";
041    static final Class<?>[] ONE_STRING_PARAM = new Class[] { String.class };
042
043    public static final String APPENDER_BAG = "APPENDER_BAG";
044    public static final String APPENDER_REF_BAG = "APPENDER_REF_BAG";
045    // public static final String FILTER_CHAIN_BAG = "FILTER_CHAIN_BAG";
046}