View Javadoc

1   /*
2    * $Id: AttributeNames.java,v 1.1 2004/12/15 14:18:10 patforna Exp $
3    *
4    * Copyright (c) 2004 Patric Fornasier, Pawel Kowalski
5    * Berne University of Applied Sciences
6    * School of Engineering and Information Technology
7    * All rights reserved.
8    */
9   package bexee.model;
10  
11  /***
12   * This is an interface with attribute names. To be implemented by classes
13   * wishing to access BPEL xml attribute names.
14   * 
15   * @version $Revision: 1.1 $, $Date: 2004/12/15 14:18:10 $
16   * @author Pawel Kowalski
17   */
18  public interface AttributeNames {
19  
20      /***
21       * name attribute name
22       */
23      public static final String NAME = "name";
24  
25      /***
26       * partnerLink attribute name
27       */
28      public static final String PARTNER_LINK = "partnerLink";
29  
30      /***
31       * partnerLinkType attribute name
32       */
33      public static final String PARTNER_LINK_TYPE = "partnerLinkType";
34  
35      /***
36       * myRole attribute name
37       */
38      public static final String MY_ROLE = "myRole";
39  
40      /***
41       * partnerRole attribute name
42       */
43      public static final String PARTNER_ROLE = "partnerRole";
44  
45      /***
46       * portType attribute name
47       */
48      public static final String PORT_TYPE = "portType";
49  
50      /***
51       * operation attribute name
52       */
53      public static final String OPERATION = "operation";
54  
55      /***
56       * variable attribute name
57       */
58      public static final String VARIABLE = "variable";
59  
60      /***
61       * createInstance attribute name
62       */
63      public static final String CREATE_INSTANCE = "createInstance";
64  
65      /***
66       * messageType attribute name
67       */
68      public static final String MESSAGE_TYPE = "messageType";
69  
70      /***
71       * type attribute name
72       */
73      public static final String TYPE = "type";
74  
75      /***
76       * element attribute name
77       */
78      public static final String ELEMENT = "element";
79  
80      /***
81       * set attribute name
82       */
83      public static final String SET = "set";
84  
85      /***
86       * inititate attribute name
87       */
88      public static final String INITIATE = "inititate";
89  
90      /***
91       * pattern attribute name
92       */
93      public static final String PATTERN = "pattern";
94  
95      /***
96       * inputVariable attribute name
97       */
98      public static final String INPUT_VARIABLE = "inputVariable";
99  
100     /***
101      * outputVariable attribute name
102      */
103     public static final String OUTPUT_VARIABLE = "outputVariable";
104 
105     /***
106      * joinCondition attribute name
107      */
108     public static final String JOIN_CONDITION = "joinCondition";
109 
110     /***
111      * suppressJoinFailure attribute name
112      */
113     public static final String SUPPRESS_JOIN_FAILURE = "suppressJoinFailure";
114 
115     /***
116      * part attribute name
117      */
118     public static final String PART = "part";
119 
120     /***
121      * property attribute name
122      */
123     public static final String PROPERTY = "property";
124 
125     /***
126      * endpointReference attribute name
127      */
128     public static final String ENDPOINT_REFERENCE = "endpointReference";
129 
130     /***
131      * expression attribute name
132      */
133     public static final String EXPRESSION = "expression";
134 
135     /***
136      * opaque attribute name
137      */
138     public static final String OPAQUE = "opaque";
139 
140     /***
141      * targetNamespace attribute name
142      */
143     public static final String TARGET_NAMESPACE = "targetNamespace";
144 
145     /***
146      * queryLanguage attribute name
147      */
148     public static final String QUERY_LANGUAGE = "queryLanguage";
149 
150     /***
151      * expressionLanguage attribute name
152      */
153     public static final String EXPRESSION_LANGUAGE = "expressionLanguage";
154 
155     /***
156      * enableInstanceCompensation attribute name
157      */
158     public static final String ENABLE_INSTANCE_COMPESATION = "enableInstanceCompensation";
159 
160     /***
161      * xmlns attribute name
162      */
163     public static final String XMLNS = "xmlns";
164 
165     /***
166      * abstractProcess attribute name
167      */
168     public static final String ABSTRACT_PROCESS = "abstractProcess";
169 
170     /***
171      * condition attribute name
172      */
173     public static final String CONDITION = "condition";
174 
175     /***
176      * faultName attribute name
177      */
178     public static final String FAULT_NAME = "faultName";
179 
180 }