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 WayBillGenerationStatus complex type.
13
 * 
14
 * <p>The following schema fragment specifies the expected content contained within this class.
15
 * 
16
 * <pre>
17
 * &lt;complexType name="WayBillGenerationStatus">
18
 *   &lt;complexContent>
19
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20
 *       &lt;sequence>
21
 *         &lt;element name="StatusCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22
 *         &lt;element name="StatusInformation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
23
 *       &lt;/sequence>
24
 *     &lt;/restriction>
25
 *   &lt;/complexContent>
26
 * &lt;/complexType>
27
 * </pre>
28
 * 
29
 * 
30
 */
31
@XmlAccessorType(XmlAccessType.FIELD)
32
@XmlType(name = "WayBillGenerationStatus", propOrder = {
33
    "statusCode",
34
    "statusInformation"
35
})
36
public class WayBillGenerationStatus {
37
 
38
    @XmlElementRef(name = "StatusCode", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
39
    protected JAXBElement<String> statusCode;
40
    @XmlElementRef(name = "StatusInformation", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
41
    protected JAXBElement<String> statusInformation;
42
 
43
    /**
44
     * Gets the value of the statusCode property.
45
     * 
46
     * @return
47
     *     possible object is
48
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
49
     *     
50
     */
51
    public JAXBElement<String> getStatusCode() {
52
        return statusCode;
53
    }
54
 
55
    /**
56
     * Sets the value of the statusCode property.
57
     * 
58
     * @param value
59
     *     allowed object is
60
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
61
     *     
62
     */
63
    public void setStatusCode(JAXBElement<String> value) {
64
        this.statusCode = value;
65
    }
66
 
67
    /**
68
     * Gets the value of the statusInformation property.
69
     * 
70
     * @return
71
     *     possible object is
72
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
73
     *     
74
     */
75
    public JAXBElement<String> getStatusInformation() {
76
        return statusInformation;
77
    }
78
 
79
    /**
80
     * Sets the value of the statusInformation property.
81
     * 
82
     * @param value
83
     *     allowed object is
84
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
85
     *     
86
     */
87
    public void setStatusInformation(JAXBElement<String> value) {
88
        this.statusInformation = value;
89
    }
90
 
91
}