1 /*
2 * Replica is published under the terms
3 * of the Apache Software License.
4 */
5 package replica.command.xml;
6
7 /*
8 * Constants for XML manipulation.
9 *
10 * @author Pedro Costa
11 * @author Helder Silva
12 * @since 17/Jan/2004
13 */
14 public interface XmlConstants{
15 final static String COMMANDS = "commands";
16 final static String MAPPING = "mapping";
17 final static String COMMAND = "command";
18 final static String CLASS = "class";
19 final static String PARAM = "param";
20 final static String NAME = "name";
21 final static String VALUE = "value";
22 }
This page was automatically generated by Maven