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 WayBillGenerationRequest complex type.
13
 * 
14
 * <p>The following schema fragment specifies the expected content contained within this class.
15
 * 
16
 * <pre>
17
 * &lt;complexType name="WayBillGenerationRequest">
18
 *   &lt;complexContent>
19
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20
 *       &lt;sequence>
21
 *         &lt;element name="Consignee" type="{http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration}Consignee" minOccurs="0"/>
22
 *         &lt;element name="Services" type="{http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration}Services" minOccurs="0"/>
23
 *         &lt;element name="Shipper" type="{http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration}Shipper" minOccurs="0"/>
24
 *       &lt;/sequence>
25
 *     &lt;/restriction>
26
 *   &lt;/complexContent>
27
 * &lt;/complexType>
28
 * </pre>
29
 * 
30
 * 
31
 */
32
@XmlAccessorType(XmlAccessType.FIELD)
33
@XmlType(name = "WayBillGenerationRequest", propOrder = {
34
    "consignee",
35
    "services",
36
    "shipper"
37
})
38
public class WayBillGenerationRequest {
39
 
40
    @XmlElementRef(name = "Consignee", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
41
    protected JAXBElement<Consignee> consignee;
42
    @XmlElementRef(name = "Services", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
43
    protected JAXBElement<Services> services;
44
    @XmlElementRef(name = "Shipper", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration", type = JAXBElement.class)
45
    protected JAXBElement<Shipper> shipper;
46
 
47
    /**
48
     * Gets the value of the consignee property.
49
     * 
50
     * @return
51
     *     possible object is
52
     *     {@link JAXBElement }{@code <}{@link Consignee }{@code >}
53
     *     
54
     */
55
    public JAXBElement<Consignee> getConsignee() {
56
        return consignee;
57
    }
58
 
59
    /**
60
     * Sets the value of the consignee property.
61
     * 
62
     * @param value
63
     *     allowed object is
64
     *     {@link JAXBElement }{@code <}{@link Consignee }{@code >}
65
     *     
66
     */
67
    public void setConsignee(JAXBElement<Consignee> value) {
68
        this.consignee = value;
69
    }
70
 
71
    /**
72
     * Gets the value of the services property.
73
     * 
74
     * @return
75
     *     possible object is
76
     *     {@link JAXBElement }{@code <}{@link Services }{@code >}
77
     *     
78
     */
79
    public JAXBElement<Services> getServices() {
80
        return services;
81
    }
82
 
83
    /**
84
     * Sets the value of the services property.
85
     * 
86
     * @param value
87
     *     allowed object is
88
     *     {@link JAXBElement }{@code <}{@link Services }{@code >}
89
     *     
90
     */
91
    public void setServices(JAXBElement<Services> value) {
92
        this.services = value;
93
    }
94
 
95
    /**
96
     * Gets the value of the shipper property.
97
     * 
98
     * @return
99
     *     possible object is
100
     *     {@link JAXBElement }{@code <}{@link Shipper }{@code >}
101
     *     
102
     */
103
    public JAXBElement<Shipper> getShipper() {
104
        return shipper;
105
    }
106
 
107
    /**
108
     * Sets the value of the shipper property.
109
     * 
110
     * @param value
111
     *     allowed object is
112
     *     {@link JAXBElement }{@code <}{@link Shipper }{@code >}
113
     *     
114
     */
115
    public void setShipper(JAXBElement<Shipper> value) {
116
        this.shipper = value;
117
    }
118
 
119
}