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.annotation.XmlAccessType;
5
import javax.xml.bind.annotation.XmlAccessorType;
6
import javax.xml.bind.annotation.XmlElement;
7
import javax.xml.bind.annotation.XmlType;
8
 
9
 
10
/**
11
 * <p>Java class for Dimension complex type.
12
 * 
13
 * <p>The following schema fragment specifies the expected content contained within this class.
14
 * 
15
 * <pre>
16
 * &lt;complexType name="Dimension">
17
 *   &lt;complexContent>
18
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
19
 *       &lt;sequence>
20
 *         &lt;element name="Breadth" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
21
 *         &lt;element name="Count" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
22
 *         &lt;element name="Height" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
23
 *         &lt;element name="Length" type="{http://www.w3.org/2001/XMLSchema}double" 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 = "Dimension", propOrder = {
34
    "breadth",
35
    "count",
36
    "height",
37
    "length"
38
})
39
public class Dimension {
40
 
41
    @XmlElement(name = "Breadth")
42
    protected Double breadth;
43
    @XmlElement(name = "Count")
44
    protected Integer count;
45
    @XmlElement(name = "Height")
46
    protected Double height;
47
    @XmlElement(name = "Length")
48
    protected Double length;
49
 
50
    /**
51
     * Gets the value of the breadth property.
52
     * 
53
     * @return
54
     *     possible object is
55
     *     {@link Double }
56
     *     
57
     */
58
    public Double getBreadth() {
59
        return breadth;
60
    }
61
 
62
    /**
63
     * Sets the value of the breadth property.
64
     * 
65
     * @param value
66
     *     allowed object is
67
     *     {@link Double }
68
     *     
69
     */
70
    public void setBreadth(Double value) {
71
        this.breadth = value;
72
    }
73
 
74
    /**
75
     * Gets the value of the count property.
76
     * 
77
     * @return
78
     *     possible object is
79
     *     {@link Integer }
80
     *     
81
     */
82
    public Integer getCount() {
83
        return count;
84
    }
85
 
86
    /**
87
     * Sets the value of the count property.
88
     * 
89
     * @param value
90
     *     allowed object is
91
     *     {@link Integer }
92
     *     
93
     */
94
    public void setCount(Integer value) {
95
        this.count = value;
96
    }
97
 
98
    /**
99
     * Gets the value of the height property.
100
     * 
101
     * @return
102
     *     possible object is
103
     *     {@link Double }
104
     *     
105
     */
106
    public Double getHeight() {
107
        return height;
108
    }
109
 
110
    /**
111
     * Sets the value of the height property.
112
     * 
113
     * @param value
114
     *     allowed object is
115
     *     {@link Double }
116
     *     
117
     */
118
    public void setHeight(Double value) {
119
        this.height = value;
120
    }
121
 
122
    /**
123
     * Gets the value of the length property.
124
     * 
125
     * @return
126
     *     possible object is
127
     *     {@link Double }
128
     *     
129
     */
130
    public Double getLength() {
131
        return length;
132
    }
133
 
134
    /**
135
     * Sets the value of the length property.
136
     * 
137
     * @param value
138
     *     allowed object is
139
     *     {@link Double }
140
     *     
141
     */
142
    public void setLength(Double value) {
143
        this.length = value;
144
    }
145
 
146
}