-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParameter.java
More file actions
422 lines (350 loc) · 13.1 KB
/
Parameter.java
File metadata and controls
422 lines (350 loc) · 13.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
package javaxt.webservices;
import org.w3c.dom.*;
import javaxt.xml.DOM;
import javaxt.utils.Value;
//******************************************************************************
//** Parameter Class
//******************************************************************************
/**
* Used to represent a parameter associated with a web method.
*
******************************************************************************/
public class Parameter {
private String name;
private String type;
private Object value;
private int minOccurs = 0;
private int maxOccurs = 1;
protected boolean IsNillable;
protected boolean IsAttribute;
private Parameter[] children = null;
private Option[] options = null;
private Node parentNode;
//**************************************************************************
//** Constructor
//**************************************************************************
/** Instantiates this class using a "Parameter" node from an SSD.
*/
protected Parameter(Node ParameterNode) throws InstantiationException {
String nodeName = ParameterNode.getNodeName();
if (!nodeName.equalsIgnoreCase("parameter") && !nodeName.equalsIgnoreCase("output")){
throw new InstantiationException(DOM.getText(ParameterNode));
}
this.parentNode = ParameterNode.getParentNode();
NamedNodeMap attr = ParameterNode.getAttributes();
name = DOM.getAttributeValue(attr, "name");
type = DOM.getAttributeValue(attr, "type");
IsAttribute = bool(DOM.getAttributeValue(attr, "isattribute"));
IsNillable = bool(DOM.getAttributeValue(attr, "isnillable"));
if (name.length()==0){
throw new InstantiationException(DOM.getText(ParameterNode));
}
//Get min occurances
try{
minOccurs = Integer.valueOf(DOM.getAttributeValue(attr, "minOccurs").trim());
if (minOccurs<0) minOccurs = 0;
}
catch (Exception e){}
//Get max occurances
String maxOccurs = DOM.getAttributeValue(attr, "maxOccurs").trim();
if (maxOccurs.equalsIgnoreCase("unbounded")){
this.maxOccurs = 32767;
}
else if(maxOccurs.equals("")){
this.maxOccurs = 1;
}
else{
try{
this.maxOccurs = Integer.valueOf(maxOccurs);
if (this.maxOccurs<0) this.maxOccurs = 0;
}
catch (Exception e){}
}
//Get children
java.util.ArrayList<Parameter> params = new java.util.ArrayList<>();
for (Node node : DOM.getNodes(ParameterNode.getChildNodes())){
if (node.getNodeName().equalsIgnoreCase("parameter")){
try{
params.add(new Parameter(node));
}
catch(InstantiationException e){
e.printStackTrace();
}
}
//params.add(new Parameter(node));
}
if (!params.isEmpty()){
children = params.toArray(new Parameter[params.size()]);
}
//Get list of possible values (i.e. options)
java.util.ArrayList<Option> options = new java.util.ArrayList<>();
for (Node node : DOM.getNodes(ParameterNode.getChildNodes())){
if (node.getNodeName().equalsIgnoreCase("options")){
for (Node optionNode : DOM.getNodes(node.getChildNodes())){
String value = DOM.getAttributeValue(optionNode.getAttributes(), "value");
String name = value;
options.add(new Option(name, value));
}
}
}
if (!options.isEmpty()){
this.options = options.toArray(new Option[options.size()]);
}
}
//**************************************************************************
//** getName
//**************************************************************************
/** Returns the parameter name.
*/
public String getName(){return name;}
//**************************************************************************
//** getType
//**************************************************************************
/** Returns the parameter type (e.g. string, int, boolean, base64Binary,
* dateTime, etc).
*/
public String getType(){return type;}
//**************************************************************************
//** getValue
//**************************************************************************
/** Returns the value set for this parameter. Note that the value returned
* from this method may vary from what was passed to setValue. Refer to the
* setValue method for more information.
*/
public Object getValue(){
return value;
}
//**************************************************************************
//** setValue
//**************************************************************************
/** Used to set the value for this parameter. If there is a type mismatch
* between the value and the parameter data type, this method will attempt
* to convert the value to the correct datatype. For example, if a byte[]
* array is given for a base64Binary parameter, the array is converted to a
* base64 encoded string.
* <p>
* This method is intended for parameters with simple types. For complex
* types, use the getChildren() method and set values for the composite
* parameters individually. Alternatively, you can pass a properly formed
* xml fragment (string) which will be used, without modification, in the
* SOAP/XML request.
* </p>
* @param val Accepts either an array or a single instance of byte, string,
* boolean, double, float, int, short, long, decimal, java.util.Date,
* javaxt.utils.Date, java.io.File, and javaxt.io.File.
*/
public void setValue(Object val){
if (val==null){
value = null;
return;
}
if (isComplex()){
if (val instanceof String){
String str = (String) val;
if (str.trim().startsWith("<")){
value = str;
}
}
}
else{
if (val.getClass().isArray()){
if (getMaxOccurs()>1){
//Copy all the objects in the array. Covert types as needed.
Object[] a = (Object[]) val;
Object[] b = new Object[a.length];
for (int i=0; i<a.length; i++){
b[i] = getValue(a[i]);
}
value = b;
}
else{
if (val instanceof byte[]){
value = getValue(val);
}
else{
//throw new Exception("This parameter does not support arrays.");
}
}
}
else{
value = getValue(val);
}
}
}
private Object getValue(Object val){
if (type.equalsIgnoreCase("base64Binary")){
if (val instanceof byte[]){
return val;
}
else if (val instanceof String) {
return javaxt.utils.Base64.decode((String) val);
}
else if (val instanceof java.io.File){
return new javaxt.io.File((java.io.File) val).getBytes().toByteArray();
}
else if (val instanceof javaxt.io.File){
return ((javaxt.io.File) val).getBytes().toByteArray();
}
}
else if(type.equalsIgnoreCase("boolean")){
return new Value(val).toBoolean();
}
else if (type.equalsIgnoreCase("byte")){
}
else if (type.equalsIgnoreCase("double")){
return new Value(val).toDouble();
}
else if (type.equalsIgnoreCase("dateTime")){
if (val instanceof java.util.Date){
return (java.util.Date) val;
}
else if (val instanceof javaxt.utils.Date){
return ((javaxt.utils.Date) val).getDate();
}
else if (val instanceof String){
try{ return new javaxt.utils.Date((String) val).getDate(); }
catch(Exception e){}
}
}
else if (type.equalsIgnoreCase("decimal")){
return new Value(val).toBigDecimal();
}
else if (type.equalsIgnoreCase("float")){
return new Value(val).toFloat();
}
else if (type.equalsIgnoreCase("int")){
return new Value(val).toInteger();
}
else if (type.equalsIgnoreCase("long")){
return new Value(val).toLong();
}
else if (type.equalsIgnoreCase("short")){
return new Value(val).toShort();
}
else if (type.equalsIgnoreCase("string")){
return new Value(val).toString();
}
return null;
}
//**************************************************************************
//** toXML
//**************************************************************************
/** Returns the parameter name and value as an XML fragment suitable for a
* SOAP request.
*/
protected String toXML(String attributes, String ns){
if (ns!=null) ns = ns.trim();
else ns = "";
String name = this.name;
if (ns.length()>0) name = ns + ":" + name;
StringBuffer xml = new StringBuffer();
if (value!=null && value.getClass().isArray()){
if (value instanceof byte[]){
xml.append("<" + name + attributes + ">");
xml.append(javaxt.utils.Base64.encode((byte[]) value));
xml.append("</" + name + ">");
}
else if (value instanceof Object[]){
boolean escapeXML = type.equalsIgnoreCase("string");
for (Object obj : (Object[]) value){
String val = obj + "";
if (escapeXML) val = javaxt.xml.DOM.escapeXml(val);
xml.append("<" + name + attributes + ">");
xml.append(val);
xml.append("</" + name + ">");
}
/*
String arr = "<name " +
"xmlns:ns2=\"http://schemas.xmlsoap.org/soap/encoding/\" " +
"xsi:type=\"ns2:Array\" " +
"ns2:arrayType=\"xsd:string[3]\"> " +
"<item xsi:type=\"xsd:string\">MINDSTRM</item> " +
"<item xsi:type=\"xsd:string\">MSFT</item> " +
"<item xsi:type=\"xsd:string\">SUN</item> " +
"</name>";
*/
}
}
else{
xml.append("<" + name + attributes + ">");
if (value!=null){
if (value instanceof String){
if (!isComplex()){
//xml.append("<![CDATA[" + Value + "]]>");
xml.append(javaxt.xml.DOM.escapeXml((String) value));
}
else{ //xml fragment?
xml.append((String) value);
}
}
else if (value instanceof java.util.Date){
java.util.Date date = (java.util.Date) value;
//2003-11-24T00:00:00.0000000-05:00
java.text.SimpleDateFormat formatter =
new java.text.SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSSSSSSZ");
String d = formatter.format(date).replace(" ", "T");
String d1 = d.substring(0,d.length()-2);
String d2 = d.substring(d.length()-2);
xml.append(d1 + ":" + d2);
}
else {
xml.append(value);
}
}
xml.append("</" + name + ">");
}
return xml.toString();
}
public int getMaxOccurs(){
return maxOccurs;
}
public int getMinOccurs(){
return minOccurs;
}
public boolean isRequired(){
if (getMinOccurs()==0) return false;
else return true;
}
public boolean isComplex(){
if (this.getChildren()!=null){
if (this.getChildren().length>0) return true;
}
if (options!=null){
return false;
}
return false;
}
public Parameter[] getChildren(){
return children;
}
protected Node getParentNode(){
return parentNode;
}
public Option[] getOptions(){
return options;
}
public String toString(){
if (isComplex()){
return name;
}
else{
return name + "=" + value;
}
}
// public void reset(){
// reset(this);
// }
//
// private void reset(Parameter param){
// param.Value = null;
// if (Children!=null){
// for (Parameter p : Children){
// reset(p);
// }
// }
// }
private boolean bool(String str){
if (str.equalsIgnoreCase("true")) return true;
else return false;
}
}