View Javadoc
1   package emissary.core.constants;
2   
3   public final class IbdoXmlElementNames {
4       /**
5        * The XML element name for Answers.
6        */
7       public static final String ANSWERS = "answers";
8       /**
9        * The XML element name for Birth Order.
10       */
11      public static final String BIRTH_ORDER = "birthOrder";
12      /**
13       * The XML element name for Broken.
14       */
15      public static final String BROKEN = "broken";
16      /**
17       * The XML element name for Classification.
18       */
19      public static final String CLASSIFICATION = "classification";
20      /**
21       * The XML element name for Current Form.
22       */
23      public static final String CURRENT_FORM = "currentForm";
24      /**
25       * The XML element name for Data.
26       */
27      public static final String DATA = "data";
28      /**
29       * The XML element name for Filename.
30       */
31      public static final String FILENAME = "filename";
32      /**
33       * The XML element name for Font Encoding.
34       */
35      public static final String FONT_ENCODING = "fontEncoding";
36      /**
37       * The XML element name for Footer.
38       */
39      public static final String FOOTER = "footer";
40      /**
41       * The XML element name for Header.
42       */
43      public static final String HEADER = "header";
44      /**
45       * The XML element name for Header Encoding.
46       */
47      public static final String HEADER_ENCODING = "headerEncoding";
48      /**
49       * The XML element name for Id.
50       */
51      public static final String ID = "id";
52      /**
53       * The XML element name for Num Children.
54       */
55      public static final String NUM_CHILDREN = "numChildren";
56      /**
57       * The XML element name for Num Siblings.
58       */
59      public static final String NUM_SIBLINGS = "numSiblings";
60      /**
61       * The XML element name for Outputable.
62       */
63      public static final String OUTPUTABLE = "outputable";
64      /**
65       * The XML element name for Meta.
66       */
67      public static final String PARAMETER = "meta";
68      /**
69       * The XML element name for Priority.
70       */
71      public static final String PRIORITY = "priority";
72      /**
73       * The XML element name for Processing Error.
74       */
75      public static final String PROCESSING_ERROR = "processingError";
76      /**
77       * The XML element name for Result.
78       */
79      public static final String RESULT = "result";
80      /**
81       * The XML element name for Transaction Id.
82       */
83      public static final String TRANSACTION_ID = "transactionId";
84      /**
85       * The XML element name for Value.
86       */
87      public static final String VALUE = "value";
88      /**
89       * The XML element name for View.
90       */
91      public static final String VIEW = "view";
92      /**
93       * The XML element name for Work Bundle Id.
94       */
95      public static final String WORK_BUNDLE_ID = "workBundleId";
96      /**
97       * The XML element name for Setup.
98       */
99      public static final String SETUP = "setup";
100     /**
101      * The XML element name for Name.
102      */
103     public static final String NAME = "name";
104 
105     /**
106      * The XML element prefix for Attachments.
107      */
108     public static final String ATTACHMENT_ELEMENT_PREFIX = "att";
109     /**
110      * The XML element prefix for Extracted Records.
111      */
112     public static final String EXTRACTED_RECORD_ELEMENT_PREFIX = "extract";
113 
114     private IbdoXmlElementNames() {}
115 }