Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
20662 kshitij.so 1
 
2
package com.bluedart.entities;
3
 
4
import javax.xml.bind.JAXBElement;
5
import javax.xml.bind.annotation.XmlAccessType;
6
import javax.xml.bind.annotation.XmlAccessorType;
7
import javax.xml.bind.annotation.XmlElementRef;
8
import javax.xml.bind.annotation.XmlType;
9
 
10
 
11
/**
12
 * <p>Java class for Consignee complex type.
13
 * 
14
 * <p>The following schema fragment specifies the expected content contained within this class.
15
 * 
16
 * <pre>
17
 * &lt;complexType name="Consignee">
18
 *   &lt;complexContent>
19
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20
 *       &lt;sequence>
21
 *         &lt;element name="ConsigneeAddress1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22
 *         &lt;element name="ConsigneeAddress2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
23
 *         &lt;element name="ConsigneeAddress3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
24
 *         &lt;element name="ConsigneeAttention" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
25
 *         &lt;element name="ConsigneeMobile" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
26
 *         &lt;element name="ConsigneeName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
27
 *         &lt;element name="ConsigneePincode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
28
 *         &lt;element name="ConsigneeTelephone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
29
 *       &lt;/sequence>
30
 *     &lt;/restriction>
31
 *   &lt;/complexContent>
32
 * &lt;/complexType>
33
 * </pre>
34
 * 
35
 * 
36
 */
37
@XmlAccessorType(XmlAccessType.FIELD)
38
@XmlType(name = "Consignee", propOrder = {
39
    "consigneeAddress1",
40
    "consigneeAddress2",
41
    "consigneeAddress3",
42
    "consigneeAttention",
43
    "consigneeMobile",
44
    "consigneeName",
45
    "consigneePincode",
46
    "consigneeTelephone"
47
})
48
public class Consignee {
49
 
50
    @XmlElementRef(name = "ConsigneeAddress1", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
51
    protected JAXBElement<String> consigneeAddress1;
52
    @XmlElementRef(name = "ConsigneeAddress2", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
53
    protected JAXBElement<String> consigneeAddress2;
54
    @XmlElementRef(name = "ConsigneeAddress3", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
55
    protected JAXBElement<String> consigneeAddress3;
56
    @XmlElementRef(name = "ConsigneeAttention", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
57
    protected JAXBElement<String> consigneeAttention;
58
    @XmlElementRef(name = "ConsigneeMobile", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
59
    protected JAXBElement<String> consigneeMobile;
60
    @XmlElementRef(name = "ConsigneeName", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
61
    protected JAXBElement<String> consigneeName;
62
    @XmlElementRef(name = "ConsigneePincode", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
63
    protected JAXBElement<String> consigneePincode;
64
    @XmlElementRef(name = "ConsigneeTelephone", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
65
    protected JAXBElement<String> consigneeTelephone;
66
 
67
    /**
68
     * Gets the value of the consigneeAddress1 property.
69
     * 
70
     * @return
71
     *     possible object is
72
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
73
     *     
74
     */
75
    public JAXBElement<String> getConsigneeAddress1() {
76
        return consigneeAddress1;
77
    }
78
 
79
    /**
80
     * Sets the value of the consigneeAddress1 property.
81
     * 
82
     * @param value
83
     *     allowed object is
84
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
85
     *     
86
     */
87
    public void setConsigneeAddress1(JAXBElement<String> value) {
88
        this.consigneeAddress1 = value;
89
    }
90
 
91
    /**
92
     * Gets the value of the consigneeAddress2 property.
93
     * 
94
     * @return
95
     *     possible object is
96
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
97
     *     
98
     */
99
    public JAXBElement<String> getConsigneeAddress2() {
100
        return consigneeAddress2;
101
    }
102
 
103
    /**
104
     * Sets the value of the consigneeAddress2 property.
105
     * 
106
     * @param value
107
     *     allowed object is
108
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
109
     *     
110
     */
111
    public void setConsigneeAddress2(JAXBElement<String> value) {
112
        this.consigneeAddress2 = value;
113
    }
114
 
115
    /**
116
     * Gets the value of the consigneeAddress3 property.
117
     * 
118
     * @return
119
     *     possible object is
120
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
121
     *     
122
     */
123
    public JAXBElement<String> getConsigneeAddress3() {
124
        return consigneeAddress3;
125
    }
126
 
127
    /**
128
     * Sets the value of the consigneeAddress3 property.
129
     * 
130
     * @param value
131
     *     allowed object is
132
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
133
     *     
134
     */
135
    public void setConsigneeAddress3(JAXBElement<String> value) {
136
        this.consigneeAddress3 = value;
137
    }
138
 
139
    /**
140
     * Gets the value of the consigneeAttention property.
141
     * 
142
     * @return
143
     *     possible object is
144
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
145
     *     
146
     */
147
    public JAXBElement<String> getConsigneeAttention() {
148
        return consigneeAttention;
149
    }
150
 
151
    /**
152
     * Sets the value of the consigneeAttention property.
153
     * 
154
     * @param value
155
     *     allowed object is
156
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
157
     *     
158
     */
159
    public void setConsigneeAttention(JAXBElement<String> value) {
160
        this.consigneeAttention = value;
161
    }
162
 
163
    /**
164
     * Gets the value of the consigneeMobile property.
165
     * 
166
     * @return
167
     *     possible object is
168
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
169
     *     
170
     */
171
    public JAXBElement<String> getConsigneeMobile() {
172
        return consigneeMobile;
173
    }
174
 
175
    /**
176
     * Sets the value of the consigneeMobile property.
177
     * 
178
     * @param value
179
     *     allowed object is
180
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
181
     *     
182
     */
183
    public void setConsigneeMobile(JAXBElement<String> value) {
184
        this.consigneeMobile = value;
185
    }
186
 
187
    /**
188
     * Gets the value of the consigneeName property.
189
     * 
190
     * @return
191
     *     possible object is
192
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
193
     *     
194
     */
195
    public JAXBElement<String> getConsigneeName() {
196
        return consigneeName;
197
    }
198
 
199
    /**
200
     * Sets the value of the consigneeName property.
201
     * 
202
     * @param value
203
     *     allowed object is
204
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
205
     *     
206
     */
207
    public void setConsigneeName(JAXBElement<String> value) {
208
        this.consigneeName = value;
209
    }
210
 
211
    /**
212
     * Gets the value of the consigneePincode property.
213
     * 
214
     * @return
215
     *     possible object is
216
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
217
     *     
218
     */
219
    public JAXBElement<String> getConsigneePincode() {
220
        return consigneePincode;
221
    }
222
 
223
    /**
224
     * Sets the value of the consigneePincode property.
225
     * 
226
     * @param value
227
     *     allowed object is
228
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
229
     *     
230
     */
231
    public void setConsigneePincode(JAXBElement<String> value) {
232
        this.consigneePincode = value;
233
    }
234
 
235
    /**
236
     * Gets the value of the consigneeTelephone property.
237
     * 
238
     * @return
239
     *     possible object is
240
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
241
     *     
242
     */
243
    public JAXBElement<String> getConsigneeTelephone() {
244
        return consigneeTelephone;
245
    }
246
 
247
    /**
248
     * Sets the value of the consigneeTelephone property.
249
     * 
250
     * @param value
251
     *     allowed object is
252
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
253
     *     
254
     */
255
    public void setConsigneeTelephone(JAXBElement<String> value) {
256
        this.consigneeTelephone = value;
257
    }
258
 
259
}