01: package org.igfay.jfig;
02:
03: /**
04: * @author conrad4
05: *
06: */
07: public class JFigConstants {
08:
09: public static final String FILENAME_PROPERTY = "config.filename";
10: public static final String LOCATION_PROPERTY = "config.location";
11: public static final String FILE = "file";
12: public static final String CLASSPATH = "classpath";
13: public static final String XML_FILENAME_SUFFIX = "config.xml";
14: // For resolving symbolic variables
15: protected static final String SECTION_START_DELIMITER = "[";
16: protected static final String SECTION_END_DELIMITER = "]";
17: protected static final String KEY_START_DELIMITER = "{";
18: protected static final String KEY_END_DELIMITER = "}";
19: protected static final String PROPERTY_DELIMITER = "$";
20:
21: // Special case to allow us to use $:;$ to denote path separator (; for win , : for unix)
22: protected static final String PATH_SEPARATOR = ":;";
23:
24: // xml elements and attributes
25: protected static final String SECTION = "section";
26: protected static final String ENTRY = "entry";
27: protected static final String INCLUDE = "include";
28: protected static final String NAME = "name";
29: protected static final String KEY = "key";
30: protected static final String VALUE = "value";
31: }
|