Project

General

Profile

1
/**
2
 * ExecuteByAttachWithPara.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 ExecuteByAttachWithPara  implements java.io.Serializable {
11
    private java.lang.Object executeByAttachWithPara;
12

    
13
    public ExecuteByAttachWithPara() {
14
    }
15

    
16
    public ExecuteByAttachWithPara(
17
           java.lang.Object executeByAttachWithPara) {
18
           this.executeByAttachWithPara = executeByAttachWithPara;
19
    }
20

    
21

    
22
    /**
23
     * Gets the executeByAttachWithPara value for this ExecuteByAttachWithPara.
24
     * 
25
     * @return executeByAttachWithPara
26
     */
27
    public java.lang.Object getExecuteByAttachWithPara() {
28
        return executeByAttachWithPara;
29
    }
30

    
31

    
32
    /**
33
     * Sets the executeByAttachWithPara value for this ExecuteByAttachWithPara.
34
     * 
35
     * @param executeByAttachWithPara
36
     */
37
    public void setExecuteByAttachWithPara(java.lang.Object executeByAttachWithPara) {
38
        this.executeByAttachWithPara = executeByAttachWithPara;
39
    }
40

    
41
    private java.lang.Object __equalsCalc = null;
42
    public synchronized boolean equals(java.lang.Object obj) {
43
        if (!(obj instanceof ExecuteByAttachWithPara)) return false;
44
        ExecuteByAttachWithPara other = (ExecuteByAttachWithPara) 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.executeByAttachWithPara==null && other.getExecuteByAttachWithPara()==null) || 
54
             (this.executeByAttachWithPara!=null &&
55
              this.executeByAttachWithPara.equals(other.getExecuteByAttachWithPara())));
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 (getExecuteByAttachWithPara() != null) {
68
            _hashCode += getExecuteByAttachWithPara().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(ExecuteByAttachWithPara.class, true);
77

    
78
    static {
79
        typeDesc.setXmlType(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", ">executeByAttachWithPara"));
80
        org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
81
        elemField.setFieldName("executeByAttachWithPara");
82
        elemField.setXmlName(new javax.xml.namespace.QName("http://executionWS.kepler.org/xsd", "executeByAttachWithPara"));
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
}
(8-8/42)