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