1 package org.andromda.cartridges.webservice;
2
3
4
5
6
7
8
9 public class WebServiceGlobals
10 {
11
12
13
14 public static final String XSD_NAMESPACE_PREFIX = "xs:";
15
16
17
18
19 public static final String SCHEMA_TYPE_MAPPINGS_URI = "schemaTypeMappingsUri";
20
21
22
23
24 public static final String ARRAY_NAME_PREFIX = "arrayNamePrefix";
25
26
27
28
29 public static final char NAMESPACE_DELIMITER = '.';
30
31
32
33
34 public static final String ADD_NAMESPACE_BACKSLASH = "addNamespaceBackslash";
35
36
37
38
39 public static final String USE_ENUM_VALUE_IN_XSD = "useEnumValueInXSD";
40
41
42
43
44 public static final String WEB_SERVICE_STYLE = "andromda_webservice_style";
45
46
47
48
49 public static final String WEB_SERVICE_PARAMETER_STYLE = "andromda_webservice_parameter_style";
50
51
52
53
54 public static final String WEB_SERVICE_USE = "andromda_webservice_use";
55
56
57
58
59
60
61 public static final String WEB_SERVICE_PROVIDER = "andromda_webservice_provider";
62
63
64
65
66
67 public static final String WEB_SERVICE_NAME = "andromda_webservice_operationName";
68
69
70
71
72 public static final String WEB_WSDL_SOAP_ADDRESS = "andromda_webservice_wsdlSoapAddress";
73
74
75
76
77 public static final String ROLE_NAME = "andromda_role_name";
78
79
80
81
82 public static final String ATTRIBUTE_FORM_DEFAULT = "andromda_xml_attributeFormDefault";
83
84
85
86
87 public static final String ELEMENT_FORM_DEFAULT = "andromda_xml_elementFormDefault";
88
89
90
91
92 public static final String XML_SCHEMA_VALIDATION = "andromda_schema_validation";
93
94
95
96
97 public static final String XML_NAMESPACE = "andromda_xml_namespace";
98
99
100
101
102 public static final String XML_XMLNS = "andromda_xml_xmlns";
103
104
105
106
107 public static final String XML_NAME = "andromda_xml_name";
108
109
110
111
112
113 public static final String XML_ADAPTER = "andromda_xml_adapter";
114
115
116
117
118 public static final String XML_TRANSIENT = "andromda_xml_transient";
119
120
121
122
123 public static final String XML_TYPE = "andromda_xml_type";
124
125
126
127
128 public static final String JAXB_SIMPLE_BINDING_MODE = "andromda_jaxb_simpleBindingMode";
129
130
131
132
133 public static final String JAXB_XJC_ARGUMENTS = "andromda_jaxb_xjcArguments";
134
135
136
137
138 public static final String REST = "andromda_REST";
139
140
141
142
143 public static final String CACHE_TYPE = "andromda_cache_type";
144
145
146
147
148 public static final String REST_CONSUMES = "andromda_REST_consumes";
149
150
151
152
153 public static final String REST_CONTEXT = "andromda_REST_context";
154
155
156
157
158 public static final String REST_HTTP_METHOD = "andromda_REST_http_method";
159
160
161
162
163 public static final String REST_PATH = "andromda_REST_path";
164
165
166
167
168 public static final String REST_PRODUCES = "andromda_REST_produces";
169
170
171
172
173 public static final String REST_PROVIDER = "andromda_REST_provider";
174
175
176
177
178 public static final String REST_REQUEST_TYPE = "andromda_REST_request_type";
179
180
181
182
183 public static final String REST_RETENTION = "andromda_REST_retention";
184
185
186
187
188 public static final String REST_TARGET = "andromda_REST_target";
189
190
191
192
193 public static final String REST_ENCODED = "andromda_REST_encoded";
194
195
196
197
198 public static final String REST_PART_TYPE = "andromda_REST_part_type";
199
200
201
202
203 public static final String REST_ROLES_ALLOWED = "andromda_REST_roles_allowed";
204
205
206
207
208 public static final String REST_SUSPEND = "andromda_REST_suspend";
209
210
211
212
213 public static final String REST_PARAMETER_URL = "andromda_REST_parameter_URL";
214
215
216
217
218 public static final String REST_PARAM_TYPE = "andromda_REST_param_type";
219
220
221
222
223 public static final String REST_PATH_PARAM = "andromda_REST_path_param";
224
225
226
227
228 public static final String REST_PATH_SEGMENT = "andromda_REST_path_segment";
229
230
231
232
233 public static final String STEREOTYPE_XML_ATTRIBUTE = "XmlAttribute";
234
235
236
237
238 public static final String STEREOTYPE_XML_ELEMENT = "XmlElement";
239
240
241
242
243 public static final String STEREOTYPE_WEBSERVICE_SECURITY = "WSSecurity";
244
245
246
247
248 public static final String SECURITY_ABBR = "andromda_security_abbr";
249
250
251
252
253 public static final String SECURITY_NAMESPACE = "andromda_security_namespace";
254
255
256
257
258 public static final String SECURITY_XSD_LOCATION = "andromda_security_XSDlocation";
259
260
261
262
263 public static final String SECURITY_PARTNAME = "andromda_wsdl_security_partName";
264
265
266
267
268 public static final String SECURITY_ELEMENT = "andromda_wsdl_security_element";
269
270
271
272
273 public static final String SECURITY_USE = "andromda_wsdl_security_use";
274
275
276
277
278 public static final String STEREOTYPE_WEBSERVICE_HEADER = "WSCustomHeader";
279
280
281
282
283 public static final String HEADER_ABBR = "andromda_header_abbr";
284
285
286
287
288 public static final String HEADER_NAMESPACE = "andromda_header_namespace";
289
290
291
292
293 public static final String HEADER_XSD_LOCATION = "andromda_header_XSDlocation";
294
295
296
297
298 public static final String HEADER_PARTNAME = "andromda_wsdl_header_partName";
299
300
301
302
303 public static final String HEADER_ELEMENT = "andromda_wsdl_header_element";
304
305
306
307
308 public static final String HEADER_USE = "andromda_wsdl_header_use";
309 }