Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7905 manish.sha 1
/**
2
 * ContactAndAddress.java
3
 *
4
 * This file was auto-generated from WSDL
5
 * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
6
 */
7
 
8
package com.fedex.ship.stub;
9
 
10
public class ContactAndAddress  implements java.io.Serializable {
11
    private com.fedex.ship.stub.Contact contact;
12
 
13
    private com.fedex.ship.stub.Address address;
14
 
15
    public ContactAndAddress() {
16
    }
17
 
18
    public ContactAndAddress(
19
           com.fedex.ship.stub.Contact contact,
20
           com.fedex.ship.stub.Address address) {
21
           this.contact = contact;
22
           this.address = address;
23
    }
24
 
25
 
26
    /**
27
     * Gets the contact value for this ContactAndAddress.
28
     * 
29
     * @return contact
30
     */
31
    public com.fedex.ship.stub.Contact getContact() {
32
        return contact;
33
    }
34
 
35
 
36
    /**
37
     * Sets the contact value for this ContactAndAddress.
38
     * 
39
     * @param contact
40
     */
41
    public void setContact(com.fedex.ship.stub.Contact contact) {
42
        this.contact = contact;
43
    }
44
 
45
 
46
    /**
47
     * Gets the address value for this ContactAndAddress.
48
     * 
49
     * @return address
50
     */
51
    public com.fedex.ship.stub.Address getAddress() {
52
        return address;
53
    }
54
 
55
 
56
    /**
57
     * Sets the address value for this ContactAndAddress.
58
     * 
59
     * @param address
60
     */
61
    public void setAddress(com.fedex.ship.stub.Address address) {
62
        this.address = address;
63
    }
64
 
65
    private java.lang.Object __equalsCalc = null;
66
    public synchronized boolean equals(java.lang.Object obj) {
67
        if (!(obj instanceof ContactAndAddress)) return false;
68
        ContactAndAddress other = (ContactAndAddress) obj;
69
        if (obj == null) return false;
70
        if (this == obj) return true;
71
        if (__equalsCalc != null) {
72
            return (__equalsCalc == obj);
73
        }
74
        __equalsCalc = obj;
75
        boolean _equals;
76
        _equals = true && 
77
            ((this.contact==null && other.getContact()==null) || 
78
             (this.contact!=null &&
79
              this.contact.equals(other.getContact()))) &&
80
            ((this.address==null && other.getAddress()==null) || 
81
             (this.address!=null &&
82
              this.address.equals(other.getAddress())));
83
        __equalsCalc = null;
84
        return _equals;
85
    }
86
 
87
    private boolean __hashCodeCalc = false;
88
    public synchronized int hashCode() {
89
        if (__hashCodeCalc) {
90
            return 0;
91
        }
92
        __hashCodeCalc = true;
93
        int _hashCode = 1;
94
        if (getContact() != null) {
95
            _hashCode += getContact().hashCode();
96
        }
97
        if (getAddress() != null) {
98
            _hashCode += getAddress().hashCode();
99
        }
100
        __hashCodeCalc = false;
101
        return _hashCode;
102
    }
103
 
104
    // Type metadata
105
    private static org.apache.axis.description.TypeDesc typeDesc =
106
        new org.apache.axis.description.TypeDesc(ContactAndAddress.class, true);
107
 
108
    static {
109
        typeDesc.setXmlType(new javax.xml.namespace.QName("http://fedex.com/ws/ship/v12", "ContactAndAddress"));
110
        org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
111
        elemField.setFieldName("contact");
112
        elemField.setXmlName(new javax.xml.namespace.QName("http://fedex.com/ws/ship/v12", "Contact"));
113
        elemField.setXmlType(new javax.xml.namespace.QName("http://fedex.com/ws/ship/v12", "Contact"));
114
        elemField.setNillable(false);
115
        typeDesc.addFieldDesc(elemField);
116
        elemField = new org.apache.axis.description.ElementDesc();
117
        elemField.setFieldName("address");
118
        elemField.setXmlName(new javax.xml.namespace.QName("http://fedex.com/ws/ship/v12", "Address"));
119
        elemField.setXmlType(new javax.xml.namespace.QName("http://fedex.com/ws/ship/v12", "Address"));
120
        elemField.setMinOccurs(0);
121
        elemField.setNillable(false);
122
        typeDesc.addFieldDesc(elemField);
123
    }
124
 
125
    /**
126
     * Return type metadata object
127
     */
128
    public static org.apache.axis.description.TypeDesc getTypeDesc() {
129
        return typeDesc;
130
    }
131
 
132
    /**
133
     * Get Custom Serializer
134
     */
135
    public static org.apache.axis.encoding.Serializer getSerializer(
136
           java.lang.String mechType, 
137
           java.lang.Class _javaType,  
138
           javax.xml.namespace.QName _xmlType) {
139
        return 
140
          new  org.apache.axis.encoding.ser.BeanSerializer(
141
            _javaType, _xmlType, typeDesc);
142
    }
143
 
144
    /**
145
     * Get Custom Deserializer
146
     */
147
    public static org.apache.axis.encoding.Deserializer getDeserializer(
148
           java.lang.String mechType, 
149
           java.lang.Class _javaType,  
150
           javax.xml.namespace.QName _xmlType) {
151
        return 
152
          new  org.apache.axis.encoding.ser.BeanDeserializer(
153
            _javaType, _xmlType, typeDesc);
154
    }
155
 
156
}