View Javadoc

1   /**
2    * LOGBack: the generic, reliable, fast and flexible logging framework.
3    * 
4    * Copyright (C) 1999-2006, QOS.ch
5    * 
6    * This library is free software, you can redistribute it and/or modify it under
7    * the terms of the GNU Lesser General Public License as published by the Free
8    * Software Foundation.
9    */
10  package ch.qos.logback.core.joran.action;
11  
12  /**
13   *
14   * This class contains costants used by other Actions.
15   * 
16   * @author Ceki Gülcü
17   *
18   */
19  public abstract class ActionConst {
20  	
21    public static final String APPENDER_TAG = "appender";
22    public static final String REF_ATTRIBUTE = "ref";
23    public static final String ADDITIVITY_ATTRIBUTE = "additivity";
24    public static final String LEVEL_ATTRIBUTE = "level";
25    public static final String CONVERTER_CLASS_ATTRIBUTE = "converterClass";
26    public static final String CONVERSION_WORD_ATTRIBUTE = "conversionWord";
27    public static final String PATTERN_ATTRIBUTE = "pattern";
28    public static final String VALUE_ATTR = "value";
29    public static final String ACTION_CLASS_ATTRIBUTE = "actionClass";
30  
31    public static final String INHERITED = "INHERITED";
32    public static final String NULL = "NULL";
33    static final Class[] ONE_STRING_PARAM = new Class[] { String.class };
34  
35    public static final String APPENDER_BAG = "APPENDER_BAG";
36    public static final String FILTER_CHAIN_BAG = "FILTER_CHAIN_BAG";
37  }