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.XmlElement;
8
import javax.xml.bind.annotation.XmlElementRef;
9
import javax.xml.bind.annotation.XmlType;
10
 
11
 
12
/**
13
 * <p>Java class for WayBillGenerationResponse complex type.
14
 * 
15
 * <p>The following schema fragment specifies the expected content contained within this class.
16
 * 
17
 * <pre>
18
 * &lt;complexType name="WayBillGenerationResponse">
19
 *   &lt;complexContent>
20
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21
 *       &lt;sequence>
22
 *         &lt;element name="AWBNo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
23
 *         &lt;element name="AWBPrintContent" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
24
 *         &lt;element name="CCRCRDREF" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
25
 *         &lt;element name="DestinationArea" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
26
 *         &lt;element name="DestinationLocation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
27
 *         &lt;element name="IsError" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
28
 *         &lt;element name="Status" type="{http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration}ArrayOfWayBillGenerationStatus" 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 = "WayBillGenerationResponse", propOrder = {
39
    "awbNo",
40
    "awbPrintContent",
41
    "ccrcrdref",
42
    "destinationArea",
43
    "destinationLocation",
44
    "isError",
45
    "status"
46
})
47
public class WayBillGenerationResponse {
48
 
49
    @XmlElementRef(name = "AWBNo", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
50
    protected JAXBElement<String> awbNo;
51
    @XmlElementRef(name = "AWBPrintContent", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
52
    protected JAXBElement<byte[]> awbPrintContent;
53
    @XmlElementRef(name = "CCRCRDREF", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
54
    protected JAXBElement<String> ccrcrdref;
55
    @XmlElementRef(name = "DestinationArea", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
56
    protected JAXBElement<String> destinationArea;
57
    @XmlElementRef(name = "DestinationLocation", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
58
    protected JAXBElement<String> destinationLocation;
59
    @XmlElement(name = "IsError")
60
    protected Boolean isError;
61
    @XmlElementRef(name = "Status", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
62
    protected JAXBElement<ArrayOfWayBillGenerationStatus> status;
63
 
64
    /**
65
     * Gets the value of the awbNo property.
66
     * 
67
     * @return
68
     *     possible object is
69
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
70
     *     
71
     */
72
    public JAXBElement<String> getAWBNo() {
73
        return awbNo;
74
    }
75
 
76
    /**
77
     * Sets the value of the awbNo property.
78
     * 
79
     * @param value
80
     *     allowed object is
81
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
82
     *     
83
     */
84
    public void setAWBNo(JAXBElement<String> value) {
85
        this.awbNo = value;
86
    }
87
 
88
    /**
89
     * Gets the value of the awbPrintContent property.
90
     * 
91
     * @return
92
     *     possible object is
93
     *     {@link JAXBElement }{@code <}{@link byte[]}{@code >}
94
     *     
95
     */
96
    public JAXBElement<byte[]> getAWBPrintContent() {
97
        return awbPrintContent;
98
    }
99
 
100
    /**
101
     * Sets the value of the awbPrintContent property.
102
     * 
103
     * @param value
104
     *     allowed object is
105
     *     {@link JAXBElement }{@code <}{@link byte[]}{@code >}
106
     *     
107
     */
108
    public void setAWBPrintContent(JAXBElement<byte[]> value) {
109
        this.awbPrintContent = value;
110
    }
111
 
112
    /**
113
     * Gets the value of the ccrcrdref property.
114
     * 
115
     * @return
116
     *     possible object is
117
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
118
     *     
119
     */
120
    public JAXBElement<String> getCCRCRDREF() {
121
        return ccrcrdref;
122
    }
123
 
124
    /**
125
     * Sets the value of the ccrcrdref property.
126
     * 
127
     * @param value
128
     *     allowed object is
129
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
130
     *     
131
     */
132
    public void setCCRCRDREF(JAXBElement<String> value) {
133
        this.ccrcrdref = value;
134
    }
135
 
136
    /**
137
     * Gets the value of the destinationArea property.
138
     * 
139
     * @return
140
     *     possible object is
141
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
142
     *     
143
     */
144
    public JAXBElement<String> getDestinationArea() {
145
        return destinationArea;
146
    }
147
 
148
    /**
149
     * Sets the value of the destinationArea property.
150
     * 
151
     * @param value
152
     *     allowed object is
153
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
154
     *     
155
     */
156
    public void setDestinationArea(JAXBElement<String> value) {
157
        this.destinationArea = value;
158
    }
159
 
160
    /**
161
     * Gets the value of the destinationLocation property.
162
     * 
163
     * @return
164
     *     possible object is
165
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
166
     *     
167
     */
168
    public JAXBElement<String> getDestinationLocation() {
169
        return destinationLocation;
170
    }
171
 
172
    /**
173
     * Sets the value of the destinationLocation property.
174
     * 
175
     * @param value
176
     *     allowed object is
177
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
178
     *     
179
     */
180
    public void setDestinationLocation(JAXBElement<String> value) {
181
        this.destinationLocation = value;
182
    }
183
 
184
    /**
185
     * Gets the value of the isError property.
186
     * 
187
     * @return
188
     *     possible object is
189
     *     {@link Boolean }
190
     *     
191
     */
192
    public Boolean isIsError() {
193
        return isError;
194
    }
195
 
196
    /**
197
     * Sets the value of the isError property.
198
     * 
199
     * @param value
200
     *     allowed object is
201
     *     {@link Boolean }
202
     *     
203
     */
204
    public void setIsError(Boolean value) {
205
        this.isError = value;
206
    }
207
 
208
    /**
209
     * Gets the value of the status property.
210
     * 
211
     * @return
212
     *     possible object is
213
     *     {@link JAXBElement }{@code <}{@link ArrayOfWayBillGenerationStatus }{@code >}
214
     *     
215
     */
216
    public JAXBElement<ArrayOfWayBillGenerationStatus> getStatus() {
217
        return status;
218
    }
219
 
220
    /**
221
     * Sets the value of the status property.
222
     * 
223
     * @param value
224
     *     allowed object is
225
     *     {@link JAXBElement }{@code <}{@link ArrayOfWayBillGenerationStatus }{@code >}
226
     *     
227
     */
228
    public void setStatus(JAXBElement<ArrayOfWayBillGenerationStatus> value) {
229
        this.status = value;
230
    }
231
 
232
}