Revision 4970
Added by daigle over 15 years ago
src/org/kepler/executionWS/xsd/StopExecution.java | ||
---|---|---|
1 |
/** |
|
2 |
* StopExecution.java |
|
3 |
* |
|
4 |
* This file was auto-generated from WSDL |
|
5 |
* by the Apache Axis 1.3 Oct 05, 2005 (05:23:37 EDT) WSDL2Java emitter. |
|
6 |
*/ |
|
7 |
|
|
8 |
package org.kepler.executionWS.xsd; |
|
9 |
|
|
10 |
public class StopExecution implements java.io.Serializable { |
|
11 |
private java.lang.String wfID; |
|
12 |
|
|
13 |
public StopExecution() { |
|
14 |
} |
|
15 |
|
|
16 |
public StopExecution( |
|
17 |
java.lang.String wfID) { |
|
18 |
this.wfID = wfID; |
|
19 |
} |
|
20 |
|
|
21 |
|
|
22 |
/** |
|
23 |
* Gets the wfID value for this StopExecution. |
|
24 |
* |
|
25 |
* @return wfID |
|
26 |
*/ |
|
27 |
public java.lang.String getWfID() { |
|
28 |
return wfID; |
|
29 |
} |
|
30 |
|
|
31 |
|
|
32 |
/** |
|
33 |
* Sets the wfID value for this StopExecution. |
|
34 |
* |
|
35 |
* @param wfID |
|
36 |
*/ |
|
37 |
public void setWfID(java.lang.String wfID) { |
|
38 |
this.wfID = wfID; |
|
39 |
} |
|
40 |
|
|
41 |
private java.lang.Object __equalsCalc = null; |
|
42 |
public synchronized boolean equals(java.lang.Object obj) { |
|
43 |
if (!(obj instanceof StopExecution)) return false; |
|
44 |
StopExecution other = (StopExecution) obj; |
|
45 |
if (obj == null) return false; |
|
46 |
if (this == obj) return true; |
|
47 |
if (__equalsCalc != null) { |
|
48 |
return (__equalsCalc == obj); |
|
49 |
} |
|
50 |
__equalsCalc = obj; |
|
51 |
boolean _equals; |
|
52 |
_equals = true && |
|
53 |
((this.wfID==null && other.getWfID()==null) || |
|
54 |
(this.wfID!=null && |
|
55 |
this.wfID.equals(other.getWfID()))); |
|
56 |
__equalsCalc = null; |
|
57 |
return _equals; |
|
58 |
} |
|
59 |
|
|
60 |
private boolean __hashCodeCalc = false; |
|
61 |
public synchronized int hashCode() { |
|
62 |
if (__hashCodeCalc) { |
|
63 |
return 0; |
|
64 |
} |
|
65 |
__hashCodeCalc = true; |
|
66 |
int _hashCode = 1; |
|
67 |
if (getWfID() != null) { |
|
68 |
_hashCode += getWfID().hashCode(); |
|
69 |
} |
|
70 |
__hashCodeCalc = false; |
|
71 |
return _hashCode; |
|
72 |
} |
|
73 |
|
|
74 |
// Type metadata |
|
75 |
private static org.apache.axis.description.TypeDesc typeDesc = |
|
76 |
new org.apache.axis.description.TypeDesc(StopExecution.class, true); |
|
77 |
|
|
78 |
static { |
|
79 |
typeDesc.setXmlType(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", ">stopExecution")); |
|
80 |
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc(); |
|
81 |
elemField.setFieldName("wfID"); |
|
82 |
elemField.setXmlName(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", "wfID")); |
|
83 |
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); |
|
84 |
elemField.setMinOccurs(0); |
|
85 |
elemField.setNillable(true); |
|
86 |
typeDesc.addFieldDesc(elemField); |
|
87 |
} |
|
88 |
|
|
89 |
/** |
|
90 |
* Return type metadata object |
|
91 |
*/ |
|
92 |
public static org.apache.axis.description.TypeDesc getTypeDesc() { |
|
93 |
return typeDesc; |
|
94 |
} |
|
95 |
|
|
96 |
/** |
|
97 |
* Get Custom Serializer |
|
98 |
*/ |
|
99 |
public static org.apache.axis.encoding.Serializer getSerializer( |
|
100 |
java.lang.String mechType, |
|
101 |
java.lang.Class _javaType, |
|
102 |
javax.xml.namespace.QName _xmlType) { |
|
103 |
return |
|
104 |
new org.apache.axis.encoding.ser.BeanSerializer( |
|
105 |
_javaType, _xmlType, typeDesc); |
|
106 |
} |
|
107 |
|
|
108 |
/** |
|
109 |
* Get Custom Deserializer |
|
110 |
*/ |
|
111 |
public static org.apache.axis.encoding.Deserializer getDeserializer( |
|
112 |
java.lang.String mechType, |
|
113 |
java.lang.Class _javaType, |
|
114 |
javax.xml.namespace.QName _xmlType) { |
|
115 |
return |
|
116 |
new org.apache.axis.encoding.ser.BeanDeserializer( |
|
117 |
_javaType, _xmlType, typeDesc); |
|
118 |
} |
|
119 |
|
|
120 |
} |
src/org/kepler/executionWS/xsd/ExecuteByURI.java | ||
---|---|---|
1 |
/** |
|
2 |
* ExecuteByURI.java |
|
3 |
* |
|
4 |
* This file was auto-generated from WSDL |
|
5 |
* by the Apache Axis 1.3 Oct 05, 2005 (05:23:37 EDT) WSDL2Java emitter. |
|
6 |
*/ |
|
7 |
|
|
8 |
package org.kepler.executionWS.xsd; |
|
9 |
|
|
10 |
public class ExecuteByURI implements java.io.Serializable { |
|
11 |
private java.lang.String wfURI; |
|
12 |
|
|
13 |
public ExecuteByURI() { |
|
14 |
} |
|
15 |
|
|
16 |
public ExecuteByURI( |
|
17 |
java.lang.String wfURI) { |
|
18 |
this.wfURI = wfURI; |
|
19 |
} |
|
20 |
|
|
21 |
|
|
22 |
/** |
|
23 |
* Gets the wfURI value for this ExecuteByURI. |
|
24 |
* |
|
25 |
* @return wfURI |
|
26 |
*/ |
|
27 |
public java.lang.String getWfURI() { |
|
28 |
return wfURI; |
|
29 |
} |
|
30 |
|
|
31 |
|
|
32 |
/** |
|
33 |
* Sets the wfURI value for this ExecuteByURI. |
|
34 |
* |
|
35 |
* @param wfURI |
|
36 |
*/ |
|
37 |
public void setWfURI(java.lang.String wfURI) { |
|
38 |
this.wfURI = wfURI; |
|
39 |
} |
|
40 |
|
|
41 |
private java.lang.Object __equalsCalc = null; |
|
42 |
public synchronized boolean equals(java.lang.Object obj) { |
|
43 |
if (!(obj instanceof ExecuteByURI)) return false; |
|
44 |
ExecuteByURI other = (ExecuteByURI) obj; |
|
45 |
if (obj == null) return false; |
|
46 |
if (this == obj) return true; |
|
47 |
if (__equalsCalc != null) { |
|
48 |
return (__equalsCalc == obj); |
|
49 |
} |
|
50 |
__equalsCalc = obj; |
|
51 |
boolean _equals; |
|
52 |
_equals = true && |
|
53 |
((this.wfURI==null && other.getWfURI()==null) || |
|
54 |
(this.wfURI!=null && |
|
55 |
this.wfURI.equals(other.getWfURI()))); |
|
56 |
__equalsCalc = null; |
|
57 |
return _equals; |
|
58 |
} |
|
59 |
|
|
60 |
private boolean __hashCodeCalc = false; |
|
61 |
public synchronized int hashCode() { |
|
62 |
if (__hashCodeCalc) { |
|
63 |
return 0; |
|
64 |
} |
|
65 |
__hashCodeCalc = true; |
|
66 |
int _hashCode = 1; |
|
67 |
if (getWfURI() != null) { |
|
68 |
_hashCode += getWfURI().hashCode(); |
|
69 |
} |
|
70 |
__hashCodeCalc = false; |
|
71 |
return _hashCode; |
|
72 |
} |
|
73 |
|
|
74 |
// Type metadata |
|
75 |
private static org.apache.axis.description.TypeDesc typeDesc = |
|
76 |
new org.apache.axis.description.TypeDesc(ExecuteByURI.class, true); |
|
77 |
|
|
78 |
static { |
|
79 |
typeDesc.setXmlType(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", ">executeByURI")); |
|
80 |
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc(); |
|
81 |
elemField.setFieldName("wfURI"); |
|
82 |
elemField.setXmlName(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", "wfURI")); |
|
83 |
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); |
|
84 |
elemField.setMinOccurs(0); |
|
85 |
elemField.setNillable(true); |
|
86 |
typeDesc.addFieldDesc(elemField); |
|
87 |
} |
|
88 |
|
|
89 |
/** |
|
90 |
* Return type metadata object |
|
91 |
*/ |
|
92 |
public static org.apache.axis.description.TypeDesc getTypeDesc() { |
|
93 |
return typeDesc; |
|
94 |
} |
|
95 |
|
|
96 |
/** |
|
97 |
* Get Custom Serializer |
|
98 |
*/ |
|
99 |
public static org.apache.axis.encoding.Serializer getSerializer( |
|
100 |
java.lang.String mechType, |
|
101 |
java.lang.Class _javaType, |
|
102 |
javax.xml.namespace.QName _xmlType) { |
|
103 |
return |
|
104 |
new org.apache.axis.encoding.ser.BeanSerializer( |
|
105 |
_javaType, _xmlType, typeDesc); |
|
106 |
} |
|
107 |
|
|
108 |
/** |
|
109 |
* Get Custom Deserializer |
|
110 |
*/ |
|
111 |
public static org.apache.axis.encoding.Deserializer getDeserializer( |
|
112 |
java.lang.String mechType, |
|
113 |
java.lang.Class _javaType, |
|
114 |
javax.xml.namespace.QName _xmlType) { |
|
115 |
return |
|
116 |
new org.apache.axis.encoding.ser.BeanDeserializer( |
|
117 |
_javaType, _xmlType, typeDesc); |
|
118 |
} |
|
119 |
|
|
120 |
} |
src/org/kepler/executionWS/xsd/ExecuteByAttach.java | ||
---|---|---|
1 |
/** |
|
2 |
* ExecuteByAttach.java |
|
3 |
* |
|
4 |
* This file was auto-generated from WSDL |
|
5 |
* by the Apache Axis 1.3 Oct 05, 2005 (05:23:37 EDT) WSDL2Java emitter. |
|
6 |
*/ |
|
7 |
|
|
8 |
package org.kepler.executionWS.xsd; |
|
9 |
|
|
10 |
public class ExecuteByAttach implements java.io.Serializable { |
|
11 |
private java.lang.Object executeByAttach; |
|
12 |
|
|
13 |
public ExecuteByAttach() { |
|
14 |
} |
|
15 |
|
|
16 |
public ExecuteByAttach( |
|
17 |
java.lang.Object executeByAttach) { |
|
18 |
this.executeByAttach = executeByAttach; |
|
19 |
} |
|
20 |
|
|
21 |
|
|
22 |
/** |
|
23 |
* Gets the executeByAttach value for this ExecuteByAttach. |
|
24 |
* |
|
25 |
* @return executeByAttach |
|
26 |
*/ |
|
27 |
public java.lang.Object getExecuteByAttach() { |
|
28 |
return executeByAttach; |
|
29 |
} |
|
30 |
|
|
31 |
|
|
32 |
/** |
|
33 |
* Sets the executeByAttach value for this ExecuteByAttach. |
|
34 |
* |
|
35 |
* @param executeByAttach |
|
36 |
*/ |
|
37 |
public void setExecuteByAttach(java.lang.Object executeByAttach) { |
|
38 |
this.executeByAttach = executeByAttach; |
|
39 |
} |
|
40 |
|
|
41 |
private java.lang.Object __equalsCalc = null; |
|
42 |
public synchronized boolean equals(java.lang.Object obj) { |
|
43 |
if (!(obj instanceof ExecuteByAttach)) return false; |
|
44 |
ExecuteByAttach other = (ExecuteByAttach) obj; |
|
45 |
if (obj == null) return false; |
|
46 |
if (this == obj) return true; |
|
47 |
if (__equalsCalc != null) { |
|
48 |
return (__equalsCalc == obj); |
|
49 |
} |
|
50 |
__equalsCalc = obj; |
|
51 |
boolean _equals; |
|
52 |
_equals = true && |
|
53 |
((this.executeByAttach==null && other.getExecuteByAttach()==null) || |
|
54 |
(this.executeByAttach!=null && |
|
55 |
this.executeByAttach.equals(other.getExecuteByAttach()))); |
|
56 |
__equalsCalc = null; |
|
57 |
return _equals; |
|
58 |
} |
|
59 |
|
|
60 |
private boolean __hashCodeCalc = false; |
|
61 |
public synchronized int hashCode() { |
|
62 |
if (__hashCodeCalc) { |
|
63 |
return 0; |
|
64 |
} |
|
65 |
__hashCodeCalc = true; |
|
66 |
int _hashCode = 1; |
|
67 |
if (getExecuteByAttach() != null) { |
|
68 |
_hashCode += getExecuteByAttach().hashCode(); |
|
69 |
} |
|
70 |
__hashCodeCalc = false; |
|
71 |
return _hashCode; |
|
72 |
} |
|
73 |
|
|
74 |
// Type metadata |
|
75 |
private static org.apache.axis.description.TypeDesc typeDesc = |
|
76 |
new org.apache.axis.description.TypeDesc(ExecuteByAttach.class, true); |
|
77 |
|
|
78 |
static { |
|
79 |
typeDesc.setXmlType(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", ">executeByAttach")); |
|
80 |
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc(); |
|
81 |
elemField.setFieldName("executeByAttach"); |
|
82 |
elemField.setXmlName(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", "executeByAttach")); |
|
83 |
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "anyType")); |
|
84 |
elemField.setMinOccurs(0); |
|
85 |
elemField.setNillable(true); |
|
86 |
typeDesc.addFieldDesc(elemField); |
|
87 |
} |
|
88 |
|
|
89 |
/** |
|
90 |
* Return type metadata object |
|
91 |
*/ |
|
92 |
public static org.apache.axis.description.TypeDesc getTypeDesc() { |
|
93 |
return typeDesc; |
|
94 |
} |
|
95 |
|
|
96 |
/** |
|
97 |
* Get Custom Serializer |
|
98 |
*/ |
|
99 |
public static org.apache.axis.encoding.Serializer getSerializer( |
|
100 |
java.lang.String mechType, |
|
101 |
java.lang.Class _javaType, |
|
102 |
javax.xml.namespace.QName _xmlType) { |
|
103 |
return |
|
104 |
new org.apache.axis.encoding.ser.BeanSerializer( |
|
105 |
_javaType, _xmlType, typeDesc); |
|
106 |
} |
|
107 |
|
|
108 |
/** |
|
109 |
* Get Custom Deserializer |
|
110 |
*/ |
|
111 |
public static org.apache.axis.encoding.Deserializer getDeserializer( |
|
112 |
java.lang.String mechType, |
|
113 |
java.lang.Class _javaType, |
|
114 |
javax.xml.namespace.QName _xmlType) { |
|
115 |
return |
|
116 |
new org.apache.axis.encoding.ser.BeanDeserializer( |
|
117 |
_javaType, _xmlType, typeDesc); |
|
118 |
} |
|
119 |
|
|
120 |
} |
src/org/kepler/executionWS/xsd/ResumeExecution.java | ||
---|---|---|
1 |
/** |
|
2 |
* ResumeExecution.java |
|
3 |
* |
|
4 |
* This file was auto-generated from WSDL |
|
5 |
* by the Apache Axis 1.3 Oct 05, 2005 (05:23:37 EDT) WSDL2Java emitter. |
|
6 |
*/ |
|
7 |
|
|
8 |
package org.kepler.executionWS.xsd; |
|
9 |
|
|
10 |
public class ResumeExecution implements java.io.Serializable { |
|
11 |
private java.lang.String wfID; |
|
12 |
|
|
13 |
public ResumeExecution() { |
|
14 |
} |
|
15 |
|
|
16 |
public ResumeExecution( |
|
17 |
java.lang.String wfID) { |
|
18 |
this.wfID = wfID; |
|
19 |
} |
|
20 |
|
|
21 |
|
|
22 |
/** |
|
23 |
* Gets the wfID value for this ResumeExecution. |
|
24 |
* |
|
25 |
* @return wfID |
|
26 |
*/ |
|
27 |
public java.lang.String getWfID() { |
|
28 |
return wfID; |
|
29 |
} |
|
30 |
|
|
31 |
|
|
32 |
/** |
|
33 |
* Sets the wfID value for this ResumeExecution. |
|
34 |
* |
|
35 |
* @param wfID |
|
36 |
*/ |
|
37 |
public void setWfID(java.lang.String wfID) { |
|
38 |
this.wfID = wfID; |
|
39 |
} |
|
40 |
|
|
41 |
private java.lang.Object __equalsCalc = null; |
|
42 |
public synchronized boolean equals(java.lang.Object obj) { |
|
43 |
if (!(obj instanceof ResumeExecution)) return false; |
|
44 |
ResumeExecution other = (ResumeExecution) obj; |
|
45 |
if (obj == null) return false; |
|
46 |
if (this == obj) return true; |
|
47 |
if (__equalsCalc != null) { |
|
48 |
return (__equalsCalc == obj); |
|
49 |
} |
|
50 |
__equalsCalc = obj; |
|
51 |
boolean _equals; |
|
52 |
_equals = true && |
|
53 |
((this.wfID==null && other.getWfID()==null) || |
|
54 |
(this.wfID!=null && |
|
55 |
this.wfID.equals(other.getWfID()))); |
|
56 |
__equalsCalc = null; |
|
57 |
return _equals; |
|
58 |
} |
|
59 |
|
|
60 |
private boolean __hashCodeCalc = false; |
|
61 |
public synchronized int hashCode() { |
|
62 |
if (__hashCodeCalc) { |
|
63 |
return 0; |
|
64 |
} |
|
65 |
__hashCodeCalc = true; |
|
66 |
int _hashCode = 1; |
|
67 |
if (getWfID() != null) { |
|
68 |
_hashCode += getWfID().hashCode(); |
|
69 |
} |
|
70 |
__hashCodeCalc = false; |
|
71 |
return _hashCode; |
|
72 |
} |
|
73 |
|
|
74 |
// Type metadata |
|
75 |
private static org.apache.axis.description.TypeDesc typeDesc = |
|
76 |
new org.apache.axis.description.TypeDesc(ResumeExecution.class, true); |
|
77 |
|
|
78 |
static { |
|
79 |
typeDesc.setXmlType(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", ">resumeExecution")); |
|
80 |
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc(); |
|
81 |
elemField.setFieldName("wfID"); |
|
82 |
elemField.setXmlName(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", "wfID")); |
|
83 |
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); |
|
84 |
elemField.setMinOccurs(0); |
|
85 |
elemField.setNillable(true); |
|
86 |
typeDesc.addFieldDesc(elemField); |
|
87 |
} |
|
88 |
|
|
89 |
/** |
|
90 |
* Return type metadata object |
|
91 |
*/ |
|
92 |
public static org.apache.axis.description.TypeDesc getTypeDesc() { |
|
93 |
return typeDesc; |
|
94 |
} |
|
95 |
|
|
96 |
/** |
|
97 |
* Get Custom Serializer |
|
98 |
*/ |
|
99 |
public static org.apache.axis.encoding.Serializer getSerializer( |
|
100 |
java.lang.String mechType, |
|
101 |
java.lang.Class _javaType, |
|
102 |
javax.xml.namespace.QName _xmlType) { |
|
103 |
return |
|
104 |
new org.apache.axis.encoding.ser.BeanSerializer( |
|
105 |
_javaType, _xmlType, typeDesc); |
|
106 |
} |
|
107 |
|
|
108 |
/** |
|
109 |
* Get Custom Deserializer |
|
110 |
*/ |
|
111 |
public static org.apache.axis.encoding.Deserializer getDeserializer( |
|
112 |
java.lang.String mechType, |
|
113 |
java.lang.Class _javaType, |
|
114 |
javax.xml.namespace.QName _xmlType) { |
|
115 |
return |
|
116 |
new org.apache.axis.encoding.ser.BeanDeserializer( |
|
117 |
_javaType, _xmlType, typeDesc); |
|
118 |
} |
|
119 |
|
|
120 |
} |
src/org/kepler/executionWS/xsd/Exception.java | ||
---|---|---|
1 |
/** |
|
2 |
* Exception.java |
|
3 |
* |
|
4 |
* This file was auto-generated from WSDL |
|
5 |
* by the Apache Axis 1.3 Oct 05, 2005 (05:23:37 EDT) WSDL2Java emitter. |
|
6 |
*/ |
|
7 |
|
|
8 |
package org.kepler.executionWS.xsd; |
|
9 |
|
|
10 |
public class Exception implements java.io.Serializable { |
|
11 |
private java.lang.Object exception; |
|
12 |
|
|
13 |
public Exception() { |
|
14 |
} |
|
15 |
|
|
16 |
public Exception( |
|
17 |
java.lang.Object exception) { |
|
18 |
this.exception = exception; |
|
19 |
} |
|
20 |
|
|
21 |
|
|
22 |
/** |
|
23 |
* Gets the exception value for this Exception. |
|
24 |
* |
|
25 |
* @return exception |
|
26 |
*/ |
|
27 |
public java.lang.Object getException() { |
|
28 |
return exception; |
|
29 |
} |
|
30 |
|
|
31 |
|
|
32 |
/** |
|
33 |
* Sets the exception value for this Exception. |
|
34 |
* |
|
35 |
* @param exception |
|
36 |
*/ |
|
37 |
public void setException(java.lang.Object exception) { |
|
38 |
this.exception = exception; |
|
39 |
} |
|
40 |
|
|
41 |
private java.lang.Object __equalsCalc = null; |
|
42 |
public synchronized boolean equals(java.lang.Object obj) { |
|
43 |
if (!(obj instanceof Exception)) return false; |
|
44 |
Exception other = (Exception) obj; |
|
45 |
if (obj == null) return false; |
|
46 |
if (this == obj) return true; |
|
47 |
if (__equalsCalc != null) { |
|
48 |
return (__equalsCalc == obj); |
|
49 |
} |
|
50 |
__equalsCalc = obj; |
|
51 |
boolean _equals; |
|
52 |
_equals = true && |
|
53 |
((this.exception==null && other.getException()==null) || |
|
54 |
(this.exception!=null && |
|
55 |
this.exception.equals(other.getException()))); |
|
56 |
__equalsCalc = null; |
|
57 |
return _equals; |
|
58 |
} |
|
59 |
|
|
60 |
private boolean __hashCodeCalc = false; |
|
61 |
public synchronized int hashCode() { |
|
62 |
if (__hashCodeCalc) { |
|
63 |
return 0; |
|
64 |
} |
|
65 |
__hashCodeCalc = true; |
|
66 |
int _hashCode = 1; |
|
67 |
if (getException() != null) { |
|
68 |
_hashCode += getException().hashCode(); |
|
69 |
} |
|
70 |
__hashCodeCalc = false; |
|
71 |
return _hashCode; |
|
72 |
} |
|
73 |
|
|
74 |
// Type metadata |
|
75 |
private static org.apache.axis.description.TypeDesc typeDesc = |
|
76 |
new org.apache.axis.description.TypeDesc(Exception.class, true); |
|
77 |
|
|
78 |
static { |
|
79 |
typeDesc.setXmlType(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", "Exception")); |
|
80 |
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc(); |
|
81 |
elemField.setFieldName("exception"); |
|
82 |
elemField.setXmlName(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", "Exception")); |
|
83 |
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "anyType")); |
|
84 |
elemField.setMinOccurs(0); |
|
85 |
elemField.setNillable(true); |
|
86 |
typeDesc.addFieldDesc(elemField); |
|
87 |
} |
|
88 |
|
|
89 |
/** |
|
90 |
* Return type metadata object |
|
91 |
*/ |
|
92 |
public static org.apache.axis.description.TypeDesc getTypeDesc() { |
|
93 |
return typeDesc; |
|
94 |
} |
|
95 |
|
|
96 |
/** |
|
97 |
* Get Custom Serializer |
|
98 |
*/ |
|
99 |
public static org.apache.axis.encoding.Serializer getSerializer( |
|
100 |
java.lang.String mechType, |
|
101 |
java.lang.Class _javaType, |
|
102 |
javax.xml.namespace.QName _xmlType) { |
|
103 |
return |
|
104 |
new org.apache.axis.encoding.ser.BeanSerializer( |
|
105 |
_javaType, _xmlType, typeDesc); |
|
106 |
} |
|
107 |
|
|
108 |
/** |
|
109 |
* Get Custom Deserializer |
|
110 |
*/ |
|
111 |
public static org.apache.axis.encoding.Deserializer getDeserializer( |
|
112 |
java.lang.String mechType, |
|
113 |
java.lang.Class _javaType, |
|
114 |
javax.xml.namespace.QName _xmlType) { |
|
115 |
return |
|
116 |
new org.apache.axis.encoding.ser.BeanDeserializer( |
|
117 |
_javaType, _xmlType, typeDesc); |
|
118 |
} |
|
119 |
|
|
120 |
} |
src/org/kepler/executionWS/xsd/StartExeByAttachWithParaResponse.java | ||
---|---|---|
1 |
/** |
|
2 |
* StartExeByAttachWithParaResponse.java |
|
3 |
* |
|
4 |
* This file was auto-generated from WSDL |
|
5 |
* by the Apache Axis 1.3 Oct 05, 2005 (05:23:37 EDT) WSDL2Java emitter. |
|
6 |
*/ |
|
7 |
|
|
8 |
package org.kepler.executionWS.xsd; |
|
9 |
|
|
10 |
public class StartExeByAttachWithParaResponse implements java.io.Serializable { |
|
11 |
private java.lang.Object _return; |
|
12 |
|
|
13 |
public StartExeByAttachWithParaResponse() { |
|
14 |
} |
|
15 |
|
|
16 |
public StartExeByAttachWithParaResponse( |
|
17 |
java.lang.Object _return) { |
|
18 |
this._return = _return; |
|
19 |
} |
|
20 |
|
|
21 |
|
|
22 |
/** |
|
23 |
* Gets the _return value for this StartExeByAttachWithParaResponse. |
|
24 |
* |
|
25 |
* @return _return |
|
26 |
*/ |
|
27 |
public java.lang.Object get_return() { |
|
28 |
return _return; |
|
29 |
} |
|
30 |
|
|
31 |
|
|
32 |
/** |
|
33 |
* Sets the _return value for this StartExeByAttachWithParaResponse. |
|
34 |
* |
|
35 |
* @param _return |
|
36 |
*/ |
|
37 |
public void set_return(java.lang.Object _return) { |
|
38 |
this._return = _return; |
|
39 |
} |
|
40 |
|
|
41 |
private java.lang.Object __equalsCalc = null; |
|
42 |
public synchronized boolean equals(java.lang.Object obj) { |
|
43 |
if (!(obj instanceof StartExeByAttachWithParaResponse)) return false; |
|
44 |
StartExeByAttachWithParaResponse other = (StartExeByAttachWithParaResponse) obj; |
|
45 |
if (obj == null) return false; |
|
46 |
if (this == obj) return true; |
|
47 |
if (__equalsCalc != null) { |
|
48 |
return (__equalsCalc == obj); |
|
49 |
} |
|
50 |
__equalsCalc = obj; |
|
51 |
boolean _equals; |
|
52 |
_equals = true && |
|
53 |
((this._return==null && other.get_return()==null) || |
|
54 |
(this._return!=null && |
|
55 |
this._return.equals(other.get_return()))); |
|
56 |
__equalsCalc = null; |
|
57 |
return _equals; |
|
58 |
} |
|
59 |
|
|
60 |
private boolean __hashCodeCalc = false; |
|
61 |
public synchronized int hashCode() { |
|
62 |
if (__hashCodeCalc) { |
|
63 |
return 0; |
|
64 |
} |
|
65 |
__hashCodeCalc = true; |
|
66 |
int _hashCode = 1; |
|
67 |
if (get_return() != null) { |
|
68 |
_hashCode += get_return().hashCode(); |
|
69 |
} |
|
70 |
__hashCodeCalc = false; |
|
71 |
return _hashCode; |
|
72 |
} |
|
73 |
|
|
74 |
// Type metadata |
|
75 |
private static org.apache.axis.description.TypeDesc typeDesc = |
|
76 |
new org.apache.axis.description.TypeDesc(StartExeByAttachWithParaResponse.class, true); |
|
77 |
|
|
78 |
static { |
|
79 |
typeDesc.setXmlType(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", ">startExeByAttachWithParaResponse")); |
|
80 |
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc(); |
|
81 |
elemField.setFieldName("_return"); |
|
82 |
elemField.setXmlName(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", "return")); |
|
83 |
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "anyType")); |
|
84 |
elemField.setMinOccurs(0); |
|
85 |
elemField.setNillable(true); |
|
86 |
typeDesc.addFieldDesc(elemField); |
|
87 |
} |
|
88 |
|
|
89 |
/** |
|
90 |
* Return type metadata object |
|
91 |
*/ |
|
92 |
public static org.apache.axis.description.TypeDesc getTypeDesc() { |
|
93 |
return typeDesc; |
|
94 |
} |
|
95 |
|
|
96 |
/** |
|
97 |
* Get Custom Serializer |
|
98 |
*/ |
|
99 |
public static org.apache.axis.encoding.Serializer getSerializer( |
|
100 |
java.lang.String mechType, |
|
101 |
java.lang.Class _javaType, |
|
102 |
javax.xml.namespace.QName _xmlType) { |
|
103 |
return |
|
104 |
new org.apache.axis.encoding.ser.BeanSerializer( |
|
105 |
_javaType, _xmlType, typeDesc); |
|
106 |
} |
|
107 |
|
|
108 |
/** |
|
109 |
* Get Custom Deserializer |
|
110 |
*/ |
|
111 |
public static org.apache.axis.encoding.Deserializer getDeserializer( |
|
112 |
java.lang.String mechType, |
|
113 |
java.lang.Class _javaType, |
|
114 |
javax.xml.namespace.QName _xmlType) { |
|
115 |
return |
|
116 |
new org.apache.axis.encoding.ser.BeanDeserializer( |
|
117 |
_javaType, _xmlType, typeDesc); |
|
118 |
} |
|
119 |
|
|
120 |
} |
src/org/kepler/executionWS/xsd/Execute.java | ||
---|---|---|
1 |
/** |
|
2 |
* Execute.java |
|
3 |
* |
|
4 |
* This file was auto-generated from WSDL |
|
5 |
* by the Apache Axis 1.3 Oct 05, 2005 (05:23:37 EDT) WSDL2Java emitter. |
|
6 |
*/ |
|
7 |
|
|
8 |
package org.kepler.executionWS.xsd; |
|
9 |
|
|
10 |
public class Execute implements java.io.Serializable { |
|
11 |
private java.lang.String karLSID; |
|
12 |
|
|
13 |
public Execute() { |
|
14 |
} |
|
15 |
|
|
16 |
public Execute( |
|
17 |
java.lang.String karLSID) { |
|
18 |
this.karLSID = karLSID; |
|
19 |
} |
|
20 |
|
|
21 |
|
|
22 |
/** |
|
23 |
* Gets the karLSID value for this Execute. |
|
24 |
* |
|
25 |
* @return karLSID |
|
26 |
*/ |
|
27 |
public java.lang.String getKarLSID() { |
|
28 |
return karLSID; |
|
29 |
} |
|
30 |
|
|
31 |
|
|
32 |
/** |
|
33 |
* Sets the karLSID value for this Execute. |
|
34 |
* |
|
35 |
* @param karLSID |
|
36 |
*/ |
|
37 |
public void setKarLSID(java.lang.String karLSID) { |
|
38 |
this.karLSID = karLSID; |
|
39 |
} |
|
40 |
|
|
41 |
private java.lang.Object __equalsCalc = null; |
|
42 |
public synchronized boolean equals(java.lang.Object obj) { |
|
43 |
if (!(obj instanceof Execute)) return false; |
|
44 |
Execute other = (Execute) obj; |
|
45 |
if (obj == null) return false; |
|
46 |
if (this == obj) return true; |
|
47 |
if (__equalsCalc != null) { |
|
48 |
return (__equalsCalc == obj); |
|
49 |
} |
|
50 |
__equalsCalc = obj; |
|
51 |
boolean _equals; |
|
52 |
_equals = true && |
|
53 |
((this.karLSID==null && other.getKarLSID()==null) || |
|
54 |
(this.karLSID!=null && |
|
55 |
this.karLSID.equals(other.getKarLSID()))); |
|
56 |
__equalsCalc = null; |
|
57 |
return _equals; |
|
58 |
} |
|
59 |
|
|
60 |
private boolean __hashCodeCalc = false; |
|
61 |
public synchronized int hashCode() { |
|
62 |
if (__hashCodeCalc) { |
|
63 |
return 0; |
|
64 |
} |
|
65 |
__hashCodeCalc = true; |
|
66 |
int _hashCode = 1; |
|
67 |
if (getKarLSID() != null) { |
|
68 |
_hashCode += getKarLSID().hashCode(); |
|
69 |
} |
|
70 |
__hashCodeCalc = false; |
|
71 |
return _hashCode; |
|
72 |
} |
|
73 |
|
|
74 |
// Type metadata |
|
75 |
private static org.apache.axis.description.TypeDesc typeDesc = |
|
76 |
new org.apache.axis.description.TypeDesc(Execute.class, true); |
|
77 |
|
|
78 |
static { |
|
79 |
typeDesc.setXmlType(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", ">execute")); |
|
80 |
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc(); |
|
81 |
elemField.setFieldName("karLSID"); |
|
82 |
elemField.setXmlName(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", "karLSID")); |
|
83 |
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); |
|
84 |
elemField.setMinOccurs(0); |
|
85 |
elemField.setNillable(true); |
|
86 |
typeDesc.addFieldDesc(elemField); |
|
87 |
} |
|
88 |
|
|
89 |
/** |
|
90 |
* Return type metadata object |
|
91 |
*/ |
|
92 |
public static org.apache.axis.description.TypeDesc getTypeDesc() { |
|
93 |
return typeDesc; |
|
94 |
} |
|
95 |
|
|
96 |
/** |
|
97 |
* Get Custom Serializer |
|
98 |
*/ |
|
99 |
public static org.apache.axis.encoding.Serializer getSerializer( |
|
100 |
java.lang.String mechType, |
|
101 |
java.lang.Class _javaType, |
|
102 |
javax.xml.namespace.QName _xmlType) { |
|
103 |
return |
|
104 |
new org.apache.axis.encoding.ser.BeanSerializer( |
|
105 |
_javaType, _xmlType, typeDesc); |
|
106 |
} |
|
107 |
|
|
108 |
/** |
|
109 |
* Get Custom Deserializer |
|
110 |
*/ |
|
111 |
public static org.apache.axis.encoding.Deserializer getDeserializer( |
|
112 |
java.lang.String mechType, |
|
113 |
java.lang.Class _javaType, |
|
114 |
javax.xml.namespace.QName _xmlType) { |
|
115 |
return |
|
116 |
new org.apache.axis.encoding.ser.BeanDeserializer( |
|
117 |
_javaType, _xmlType, typeDesc); |
|
118 |
} |
|
119 |
|
|
120 |
} |
src/org/kepler/executionWS/xsd/StartExeByContentResponse.java | ||
---|---|---|
1 |
/** |
|
2 |
* StartExeByContentResponse.java |
|
3 |
* |
|
4 |
* This file was auto-generated from WSDL |
|
5 |
* by the Apache Axis 1.3 Oct 05, 2005 (05:23:37 EDT) WSDL2Java emitter. |
|
6 |
*/ |
|
7 |
|
|
8 |
package org.kepler.executionWS.xsd; |
|
9 |
|
|
10 |
public class StartExeByContentResponse implements java.io.Serializable { |
|
11 |
private java.lang.String _return; |
|
12 |
|
|
13 |
public StartExeByContentResponse() { |
|
14 |
} |
|
15 |
|
|
16 |
public StartExeByContentResponse( |
|
17 |
java.lang.String _return) { |
|
18 |
this._return = _return; |
|
19 |
} |
|
20 |
|
|
21 |
|
|
22 |
/** |
|
23 |
* Gets the _return value for this StartExeByContentResponse. |
|
24 |
* |
|
25 |
* @return _return |
|
26 |
*/ |
|
27 |
public java.lang.String get_return() { |
|
28 |
return _return; |
|
29 |
} |
|
30 |
|
|
31 |
|
|
32 |
/** |
|
33 |
* Sets the _return value for this StartExeByContentResponse. |
|
34 |
* |
|
35 |
* @param _return |
|
36 |
*/ |
|
37 |
public void set_return(java.lang.String _return) { |
|
38 |
this._return = _return; |
|
39 |
} |
|
40 |
|
|
41 |
private java.lang.Object __equalsCalc = null; |
|
42 |
public synchronized boolean equals(java.lang.Object obj) { |
|
43 |
if (!(obj instanceof StartExeByContentResponse)) return false; |
|
44 |
StartExeByContentResponse other = (StartExeByContentResponse) obj; |
|
45 |
if (obj == null) return false; |
|
46 |
if (this == obj) return true; |
|
47 |
if (__equalsCalc != null) { |
|
48 |
return (__equalsCalc == obj); |
|
49 |
} |
|
50 |
__equalsCalc = obj; |
|
51 |
boolean _equals; |
|
52 |
_equals = true && |
|
53 |
((this._return==null && other.get_return()==null) || |
|
54 |
(this._return!=null && |
|
55 |
this._return.equals(other.get_return()))); |
|
56 |
__equalsCalc = null; |
|
57 |
return _equals; |
|
58 |
} |
|
59 |
|
|
60 |
private boolean __hashCodeCalc = false; |
|
61 |
public synchronized int hashCode() { |
|
62 |
if (__hashCodeCalc) { |
|
63 |
return 0; |
|
64 |
} |
|
65 |
__hashCodeCalc = true; |
|
66 |
int _hashCode = 1; |
|
67 |
if (get_return() != null) { |
|
68 |
_hashCode += get_return().hashCode(); |
|
69 |
} |
|
70 |
__hashCodeCalc = false; |
|
71 |
return _hashCode; |
|
72 |
} |
|
73 |
|
|
74 |
// Type metadata |
|
75 |
private static org.apache.axis.description.TypeDesc typeDesc = |
|
76 |
new org.apache.axis.description.TypeDesc(StartExeByContentResponse.class, true); |
|
77 |
|
|
78 |
static { |
|
79 |
typeDesc.setXmlType(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", ">startExeByContentResponse")); |
|
80 |
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc(); |
|
81 |
elemField.setFieldName("_return"); |
|
82 |
elemField.setXmlName(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", "return")); |
|
83 |
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); |
|
84 |
elemField.setMinOccurs(0); |
|
85 |
elemField.setNillable(true); |
|
86 |
typeDesc.addFieldDesc(elemField); |
|
87 |
} |
|
88 |
|
|
89 |
/** |
|
90 |
* Return type metadata object |
|
91 |
*/ |
|
92 |
public static org.apache.axis.description.TypeDesc getTypeDesc() { |
|
93 |
return typeDesc; |
|
94 |
} |
|
95 |
|
|
96 |
/** |
|
97 |
* Get Custom Serializer |
|
98 |
*/ |
|
99 |
public static org.apache.axis.encoding.Serializer getSerializer( |
|
100 |
java.lang.String mechType, |
|
101 |
java.lang.Class _javaType, |
|
102 |
javax.xml.namespace.QName _xmlType) { |
|
103 |
return |
|
104 |
new org.apache.axis.encoding.ser.BeanSerializer( |
|
105 |
_javaType, _xmlType, typeDesc); |
|
106 |
} |
|
107 |
|
|
108 |
/** |
|
109 |
* Get Custom Deserializer |
|
110 |
*/ |
|
111 |
public static org.apache.axis.encoding.Deserializer getDeserializer( |
|
112 |
java.lang.String mechType, |
|
113 |
java.lang.Class _javaType, |
|
114 |
javax.xml.namespace.QName _xmlType) { |
|
115 |
return |
|
116 |
new org.apache.axis.encoding.ser.BeanDeserializer( |
|
117 |
_javaType, _xmlType, typeDesc); |
|
118 |
} |
|
119 |
|
|
120 |
} |
src/org/kepler/executionWS/xsd/GetExecutionStatus.java | ||
---|---|---|
1 |
/** |
|
2 |
* GetExecutionStatus.java |
|
3 |
* |
|
4 |
* This file was auto-generated from WSDL |
|
5 |
* by the Apache Axis 1.3 Oct 05, 2005 (05:23:37 EDT) WSDL2Java emitter. |
|
6 |
*/ |
|
7 |
|
|
8 |
package org.kepler.executionWS.xsd; |
|
9 |
|
|
10 |
public class GetExecutionStatus implements java.io.Serializable { |
|
11 |
private java.lang.String wfID; |
|
12 |
|
|
13 |
public GetExecutionStatus() { |
|
14 |
} |
|
15 |
|
|
16 |
public GetExecutionStatus( |
|
17 |
java.lang.String wfID) { |
|
18 |
this.wfID = wfID; |
|
19 |
} |
|
20 |
|
|
21 |
|
|
22 |
/** |
|
23 |
* Gets the wfID value for this GetExecutionStatus. |
|
24 |
* |
|
25 |
* @return wfID |
|
26 |
*/ |
|
27 |
public java.lang.String getWfID() { |
|
28 |
return wfID; |
|
29 |
} |
|
30 |
|
|
31 |
|
|
32 |
/** |
|
33 |
* Sets the wfID value for this GetExecutionStatus. |
|
34 |
* |
|
35 |
* @param wfID |
|
36 |
*/ |
|
37 |
public void setWfID(java.lang.String wfID) { |
|
38 |
this.wfID = wfID; |
|
39 |
} |
|
40 |
|
|
41 |
private java.lang.Object __equalsCalc = null; |
|
42 |
public synchronized boolean equals(java.lang.Object obj) { |
|
43 |
if (!(obj instanceof GetExecutionStatus)) return false; |
|
44 |
GetExecutionStatus other = (GetExecutionStatus) obj; |
|
45 |
if (obj == null) return false; |
|
46 |
if (this == obj) return true; |
|
47 |
if (__equalsCalc != null) { |
|
48 |
return (__equalsCalc == obj); |
|
49 |
} |
|
50 |
__equalsCalc = obj; |
|
51 |
boolean _equals; |
|
52 |
_equals = true && |
|
53 |
((this.wfID==null && other.getWfID()==null) || |
|
54 |
(this.wfID!=null && |
|
55 |
this.wfID.equals(other.getWfID()))); |
|
56 |
__equalsCalc = null; |
|
57 |
return _equals; |
|
58 |
} |
|
59 |
|
|
60 |
private boolean __hashCodeCalc = false; |
|
61 |
public synchronized int hashCode() { |
|
62 |
if (__hashCodeCalc) { |
|
63 |
return 0; |
|
64 |
} |
|
65 |
__hashCodeCalc = true; |
|
66 |
int _hashCode = 1; |
|
67 |
if (getWfID() != null) { |
|
68 |
_hashCode += getWfID().hashCode(); |
|
69 |
} |
|
70 |
__hashCodeCalc = false; |
|
71 |
return _hashCode; |
|
72 |
} |
|
73 |
|
|
74 |
// Type metadata |
|
75 |
private static org.apache.axis.description.TypeDesc typeDesc = |
|
76 |
new org.apache.axis.description.TypeDesc(GetExecutionStatus.class, true); |
|
77 |
|
|
78 |
static { |
|
79 |
typeDesc.setXmlType(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", ">getExecutionStatus")); |
|
80 |
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc(); |
|
81 |
elemField.setFieldName("wfID"); |
|
82 |
elemField.setXmlName(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", "wfID")); |
|
83 |
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); |
|
84 |
elemField.setMinOccurs(0); |
|
85 |
elemField.setNillable(true); |
|
86 |
typeDesc.addFieldDesc(elemField); |
|
87 |
} |
|
88 |
|
|
89 |
/** |
|
90 |
* Return type metadata object |
|
91 |
*/ |
|
92 |
public static org.apache.axis.description.TypeDesc getTypeDesc() { |
|
93 |
return typeDesc; |
|
94 |
} |
|
95 |
|
|
96 |
/** |
|
97 |
* Get Custom Serializer |
|
98 |
*/ |
|
99 |
public static org.apache.axis.encoding.Serializer getSerializer( |
|
100 |
java.lang.String mechType, |
|
101 |
java.lang.Class _javaType, |
|
102 |
javax.xml.namespace.QName _xmlType) { |
|
103 |
return |
|
104 |
new org.apache.axis.encoding.ser.BeanSerializer( |
|
105 |
_javaType, _xmlType, typeDesc); |
|
106 |
} |
|
107 |
|
|
108 |
/** |
|
109 |
* Get Custom Deserializer |
|
110 |
*/ |
|
111 |
public static org.apache.axis.encoding.Deserializer getDeserializer( |
|
112 |
java.lang.String mechType, |
|
113 |
java.lang.Class _javaType, |
|
114 |
javax.xml.namespace.QName _xmlType) { |
|
115 |
return |
|
116 |
new org.apache.axis.encoding.ser.BeanDeserializer( |
|
117 |
_javaType, _xmlType, typeDesc); |
|
118 |
} |
|
119 |
|
|
120 |
} |
src/org/kepler/executionWS/xsd/FileNotFoundException.java | ||
---|---|---|
1 |
/** |
|
2 |
* FileNotFoundException.java |
|
3 |
* |
|
4 |
* This file was auto-generated from WSDL |
|
5 |
* by the Apache Axis 1.3 Oct 05, 2005 (05:23:37 EDT) WSDL2Java emitter. |
|
6 |
*/ |
|
7 |
|
|
8 |
package org.kepler.executionWS.xsd; |
|
9 |
|
|
10 |
public class FileNotFoundException extends org.apache.axis.AxisFault implements java.io.Serializable { |
|
11 |
|
|
12 |
private static final long serialVersionUID = 8554993551179967192L; |
|
13 |
|
|
14 |
private edu.ucsb.nceas.shared.xsd.FileNotFoundException fileNotFoundException; |
|
15 |
|
|
16 |
public FileNotFoundException() { |
|
17 |
} |
|
18 |
|
|
19 |
public FileNotFoundException( |
|
20 |
edu.ucsb.nceas.shared.xsd.FileNotFoundException fileNotFoundException) { |
|
21 |
this.fileNotFoundException = fileNotFoundException; |
|
22 |
} |
|
23 |
|
|
24 |
|
|
25 |
/** |
|
26 |
* Gets the fileNotFoundException value for this FileNotFoundException. |
|
27 |
* |
|
28 |
* @return fileNotFoundException |
|
29 |
*/ |
|
30 |
public edu.ucsb.nceas.shared.xsd.FileNotFoundException getFileNotFoundException() { |
|
31 |
return fileNotFoundException; |
|
32 |
} |
|
33 |
|
|
34 |
|
|
35 |
/** |
|
36 |
* Sets the fileNotFoundException value for this FileNotFoundException. |
|
37 |
* |
|
38 |
* @param fileNotFoundException |
|
39 |
*/ |
|
40 |
public void setFileNotFoundException(edu.ucsb.nceas.shared.xsd.FileNotFoundException fileNotFoundException) { |
|
41 |
this.fileNotFoundException = fileNotFoundException; |
|
42 |
} |
|
43 |
|
|
44 |
private java.lang.Object __equalsCalc = null; |
|
45 |
public synchronized boolean equals(java.lang.Object obj) { |
|
46 |
if (!(obj instanceof FileNotFoundException)) return false; |
|
47 |
FileNotFoundException other = (FileNotFoundException) obj; |
|
48 |
if (obj == null) return false; |
|
49 |
if (this == obj) return true; |
|
50 |
if (__equalsCalc != null) { |
|
51 |
return (__equalsCalc == obj); |
|
52 |
} |
|
53 |
__equalsCalc = obj; |
|
54 |
boolean _equals; |
|
55 |
_equals = true && |
|
56 |
((this.fileNotFoundException==null && other.getFileNotFoundException()==null) || |
|
57 |
(this.fileNotFoundException!=null && |
|
58 |
this.fileNotFoundException.equals(other.getFileNotFoundException()))); |
|
59 |
__equalsCalc = null; |
|
60 |
return _equals; |
|
61 |
} |
|
62 |
|
|
63 |
private boolean __hashCodeCalc = false; |
|
64 |
public synchronized int hashCode() { |
|
65 |
if (__hashCodeCalc) { |
|
66 |
return 0; |
|
67 |
} |
|
68 |
__hashCodeCalc = true; |
|
69 |
int _hashCode = 1; |
|
70 |
if (getFileNotFoundException() != null) { |
|
71 |
_hashCode += getFileNotFoundException().hashCode(); |
|
72 |
} |
|
73 |
__hashCodeCalc = false; |
|
74 |
return _hashCode; |
|
75 |
} |
|
76 |
|
|
77 |
// Type metadata |
|
78 |
private static org.apache.axis.description.TypeDesc typeDesc = |
|
79 |
new org.apache.axis.description.TypeDesc(FileNotFoundException.class, true); |
|
80 |
|
|
81 |
static { |
|
82 |
typeDesc.setXmlType(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", ">FileNotFoundException")); |
|
83 |
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc(); |
|
84 |
elemField.setFieldName("fileNotFoundException"); |
|
85 |
elemField.setXmlName(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", "FileNotFoundException")); |
|
86 |
elemField.setXmlType(new javax.xml.namespace.QName("http://io.java/xsd", "FileNotFoundException")); |
|
87 |
elemField.setMinOccurs(0); |
|
88 |
elemField.setNillable(true); |
|
89 |
typeDesc.addFieldDesc(elemField); |
|
90 |
} |
|
91 |
|
|
92 |
/** |
|
93 |
* Return type metadata object |
|
94 |
*/ |
|
95 |
public static org.apache.axis.description.TypeDesc getTypeDesc() { |
|
96 |
return typeDesc; |
|
97 |
} |
|
98 |
|
|
99 |
/** |
|
100 |
* Get Custom Serializer |
|
101 |
*/ |
|
102 |
public static org.apache.axis.encoding.Serializer getSerializer( |
|
103 |
java.lang.String mechType, |
|
104 |
java.lang.Class _javaType, |
|
105 |
javax.xml.namespace.QName _xmlType) { |
|
106 |
return |
|
107 |
new org.apache.axis.encoding.ser.BeanSerializer( |
|
108 |
_javaType, _xmlType, typeDesc); |
|
109 |
} |
|
110 |
|
|
111 |
/** |
|
112 |
* Get Custom Deserializer |
|
113 |
*/ |
|
114 |
public static org.apache.axis.encoding.Deserializer getDeserializer( |
|
115 |
java.lang.String mechType, |
|
116 |
java.lang.Class _javaType, |
|
117 |
javax.xml.namespace.QName _xmlType) { |
|
118 |
return |
|
119 |
new org.apache.axis.encoding.ser.BeanDeserializer( |
|
120 |
_javaType, _xmlType, typeDesc); |
|
121 |
} |
|
122 |
|
|
123 |
|
|
124 |
/** |
|
125 |
* Writes the exception data to the faultDetails |
|
126 |
*/ |
|
127 |
public void writeDetails(javax.xml.namespace.QName qname, org.apache.axis.encoding.SerializationContext context) throws java.io.IOException { |
|
128 |
context.serialize(qname, null, this); |
|
129 |
} |
|
130 |
} |
src/org/kepler/executionWS/xsd/StartExeByURIWithParaResponse.java | ||
---|---|---|
1 |
/** |
|
2 |
* StartExeByURIWithParaResponse.java |
|
3 |
* |
|
4 |
* This file was auto-generated from WSDL |
|
5 |
* by the Apache Axis 1.3 Oct 05, 2005 (05:23:37 EDT) WSDL2Java emitter. |
|
6 |
*/ |
|
7 |
|
|
8 |
package org.kepler.executionWS.xsd; |
|
9 |
|
|
10 |
public class StartExeByURIWithParaResponse implements java.io.Serializable { |
|
11 |
private java.lang.String _return; |
|
12 |
|
|
13 |
public StartExeByURIWithParaResponse() { |
|
14 |
} |
|
15 |
|
|
16 |
public StartExeByURIWithParaResponse( |
|
17 |
java.lang.String _return) { |
|
18 |
this._return = _return; |
|
19 |
} |
|
20 |
|
|
21 |
|
|
22 |
/** |
|
23 |
* Gets the _return value for this StartExeByURIWithParaResponse. |
|
24 |
* |
|
25 |
* @return _return |
|
26 |
*/ |
|
27 |
public java.lang.String get_return() { |
|
28 |
return _return; |
|
29 |
} |
|
30 |
|
|
31 |
|
|
32 |
/** |
|
33 |
* Sets the _return value for this StartExeByURIWithParaResponse. |
|
34 |
* |
|
35 |
* @param _return |
|
36 |
*/ |
|
37 |
public void set_return(java.lang.String _return) { |
|
38 |
this._return = _return; |
|
39 |
} |
|
40 |
|
|
41 |
private java.lang.Object __equalsCalc = null; |
|
42 |
public synchronized boolean equals(java.lang.Object obj) { |
|
43 |
if (!(obj instanceof StartExeByURIWithParaResponse)) return false; |
|
44 |
StartExeByURIWithParaResponse other = (StartExeByURIWithParaResponse) obj; |
|
45 |
if (obj == null) return false; |
|
46 |
if (this == obj) return true; |
|
47 |
if (__equalsCalc != null) { |
|
48 |
return (__equalsCalc == obj); |
|
49 |
} |
|
50 |
__equalsCalc = obj; |
|
51 |
boolean _equals; |
|
52 |
_equals = true && |
|
53 |
((this._return==null && other.get_return()==null) || |
|
54 |
(this._return!=null && |
|
55 |
this._return.equals(other.get_return()))); |
|
56 |
__equalsCalc = null; |
|
57 |
return _equals; |
|
58 |
} |
|
59 |
|
|
60 |
private boolean __hashCodeCalc = false; |
|
61 |
public synchronized int hashCode() { |
|
62 |
if (__hashCodeCalc) { |
|
63 |
return 0; |
|
64 |
} |
|
65 |
__hashCodeCalc = true; |
|
66 |
int _hashCode = 1; |
|
67 |
if (get_return() != null) { |
|
68 |
_hashCode += get_return().hashCode(); |
|
69 |
} |
|
70 |
__hashCodeCalc = false; |
|
71 |
return _hashCode; |
|
72 |
} |
|
73 |
|
|
74 |
// Type metadata |
|
75 |
private static org.apache.axis.description.TypeDesc typeDesc = |
|
76 |
new org.apache.axis.description.TypeDesc(StartExeByURIWithParaResponse.class, true); |
|
77 |
|
|
78 |
static { |
|
79 |
typeDesc.setXmlType(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", ">startExeByURIWithParaResponse")); |
|
80 |
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc(); |
|
81 |
elemField.setFieldName("_return"); |
|
82 |
elemField.setXmlName(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", "return")); |
|
83 |
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); |
|
84 |
elemField.setMinOccurs(0); |
|
85 |
elemField.setNillable(true); |
|
86 |
typeDesc.addFieldDesc(elemField); |
|
87 |
} |
|
88 |
|
|
89 |
/** |
|
90 |
* Return type metadata object |
|
91 |
*/ |
|
92 |
public static org.apache.axis.description.TypeDesc getTypeDesc() { |
|
93 |
return typeDesc; |
|
94 |
} |
|
95 |
|
|
96 |
/** |
|
97 |
* Get Custom Serializer |
|
98 |
*/ |
|
99 |
public static org.apache.axis.encoding.Serializer getSerializer( |
|
100 |
java.lang.String mechType, |
|
101 |
java.lang.Class _javaType, |
|
102 |
javax.xml.namespace.QName _xmlType) { |
|
103 |
return |
|
104 |
new org.apache.axis.encoding.ser.BeanSerializer( |
|
105 |
_javaType, _xmlType, typeDesc); |
|
106 |
} |
|
107 |
|
|
108 |
/** |
|
109 |
* Get Custom Deserializer |
|
110 |
*/ |
|
111 |
public static org.apache.axis.encoding.Deserializer getDeserializer( |
|
112 |
java.lang.String mechType, |
|
113 |
java.lang.Class _javaType, |
|
114 |
javax.xml.namespace.QName _xmlType) { |
|
115 |
return |
|
116 |
new org.apache.axis.encoding.ser.BeanDeserializer( |
|
117 |
_javaType, _xmlType, typeDesc); |
|
118 |
} |
|
119 |
|
|
120 |
} |
src/org/kepler/executionWS/xsd/ExecuteResponse.java | ||
---|---|---|
1 |
/** |
|
2 |
* ExecuteResponse.java |
|
3 |
* |
|
4 |
* This file was auto-generated from WSDL |
|
5 |
* by the Apache Axis 1.3 Oct 05, 2005 (05:23:37 EDT) WSDL2Java emitter. |
|
6 |
*/ |
|
7 |
|
|
8 |
package org.kepler.executionWS.xsd; |
|
9 |
|
|
10 |
public class ExecuteResponse implements java.io.Serializable { |
|
11 |
private java.lang.String _return; |
|
12 |
|
|
13 |
public ExecuteResponse() { |
|
14 |
} |
|
15 |
|
|
16 |
public ExecuteResponse( |
|
17 |
java.lang.String _return) { |
|
18 |
this._return = _return; |
|
19 |
} |
|
20 |
|
|
21 |
|
|
22 |
/** |
|
23 |
* Gets the _return value for this ExecuteResponse. |
|
24 |
* |
|
25 |
* @return _return |
|
26 |
*/ |
|
27 |
public java.lang.String get_return() { |
|
28 |
return _return; |
|
29 |
} |
|
30 |
|
|
31 |
|
|
32 |
/** |
|
33 |
* Sets the _return value for this ExecuteResponse. |
|
34 |
* |
|
35 |
* @param _return |
|
36 |
*/ |
|
37 |
public void set_return(java.lang.String _return) { |
|
38 |
this._return = _return; |
|
39 |
} |
|
40 |
|
|
41 |
private java.lang.Object __equalsCalc = null; |
|
42 |
public synchronized boolean equals(java.lang.Object obj) { |
|
43 |
if (!(obj instanceof ExecuteResponse)) return false; |
|
44 |
ExecuteResponse other = (ExecuteResponse) obj; |
|
45 |
if (obj == null) return false; |
|
46 |
if (this == obj) return true; |
|
47 |
if (__equalsCalc != null) { |
|
48 |
return (__equalsCalc == obj); |
|
49 |
} |
|
50 |
__equalsCalc = obj; |
|
51 |
boolean _equals; |
|
52 |
_equals = true && |
|
53 |
((this._return==null && other.get_return()==null) || |
|
54 |
(this._return!=null && |
|
55 |
this._return.equals(other.get_return()))); |
|
56 |
__equalsCalc = null; |
|
57 |
return _equals; |
|
58 |
} |
|
59 |
|
|
60 |
private boolean __hashCodeCalc = false; |
|
61 |
public synchronized int hashCode() { |
|
62 |
if (__hashCodeCalc) { |
|
63 |
return 0; |
|
64 |
} |
|
65 |
__hashCodeCalc = true; |
|
66 |
int _hashCode = 1; |
|
67 |
if (get_return() != null) { |
|
68 |
_hashCode += get_return().hashCode(); |
|
69 |
} |
|
70 |
__hashCodeCalc = false; |
|
71 |
return _hashCode; |
|
72 |
} |
|
73 |
|
|
74 |
// Type metadata |
|
75 |
private static org.apache.axis.description.TypeDesc typeDesc = |
|
76 |
new org.apache.axis.description.TypeDesc(ExecuteResponse.class, true); |
|
77 |
|
|
78 |
static { |
|
79 |
typeDesc.setXmlType(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", ">executeResponse")); |
|
80 |
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc(); |
|
81 |
elemField.setFieldName("_return"); |
|
82 |
elemField.setXmlName(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", "return")); |
|
83 |
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); |
|
84 |
elemField.setMinOccurs(0); |
|
85 |
elemField.setNillable(true); |
|
86 |
typeDesc.addFieldDesc(elemField); |
|
87 |
} |
|
88 |
|
|
89 |
/** |
|
90 |
* Return type metadata object |
|
91 |
*/ |
|
92 |
public static org.apache.axis.description.TypeDesc getTypeDesc() { |
|
93 |
return typeDesc; |
|
94 |
} |
|
95 |
|
|
96 |
/** |
|
97 |
* Get Custom Serializer |
|
98 |
*/ |
|
99 |
public static org.apache.axis.encoding.Serializer getSerializer( |
|
100 |
java.lang.String mechType, |
|
101 |
java.lang.Class _javaType, |
|
102 |
javax.xml.namespace.QName _xmlType) { |
|
103 |
return |
|
104 |
new org.apache.axis.encoding.ser.BeanSerializer( |
|
105 |
_javaType, _xmlType, typeDesc); |
|
106 |
} |
|
107 |
|
|
108 |
/** |
|
109 |
* Get Custom Deserializer |
|
110 |
*/ |
|
111 |
public static org.apache.axis.encoding.Deserializer getDeserializer( |
Also available in: Unified diff
kepler workflow execution engine client classes