View Javadoc
1   /**
2    * Logback: the reliable, generic, fast and flexible logging framework.
3    * Copyright (C) 1999-2015, QOS.ch. All rights reserved.
4    *
5    * This program and the accompanying materials are dual-licensed under
6    * either the terms of the Eclipse Public License v1.0 as published by
7    * the Eclipse Foundation
8    *
9    *   or (per the licensee's choosing)
10   *
11   * under the terms of the GNU Lesser General Public License version 2.1
12   * as published by the Free Software Foundation.
13   */
14  package ch.qos.logback.core.joran;
15  
16  /**
17   *
18   * This class contains constants used by Joran components.
19   * 
20   * @author Ceki Gülcü
21   *
22   */
23  public abstract class JoranConstants {
24      public static final String INCLUDED_TAG = "included";
25      public static final String CONFIGURATION_TAG = "configuration";
26  
27      public static final String INCLUDE_TAG = "include";
28  
29      public static final String APPENDER_TAG = "appender";
30      public static final String REF_ATTRIBUTE = "ref";
31      public static final String ADDITIVITY_ATTRIBUTE = "additivity";
32      public static final String LEVEL_ATTRIBUTE = "level";
33      public static final String CONVERTER_CLASS_ATTRIBUTE = "converterClass";
34      public static final String CONVERSION_WORD_ATTRIBUTE = "conversionWord";
35      public static final String PATTERN_ATTRIBUTE = "pattern";
36      public static final String VALUE_ATTR = "value";
37      public static final String ACTION_CLASS_ATTRIBUTE = "actionClass";
38  
39      public static final String INHERITED = "INHERITED";
40      public static final String NULL = "NULL";
41      static final Class<?>[] ONE_STRING_PARAM = new Class[] { String.class };
42  
43      public static final String APPENDER_BAG = "APPENDER_BAG";
44      public static final String APPENDER_REF_BAG = "APPENDER_REF_BAG";
45      // public static final String FILTER_CHAIN_BAG = "FILTER_CHAIN_BAG";
46  }