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 UserProfile complex type.
13
 * 
14
 * <p>The following schema fragment specifies the expected content contained within this class.
15
 * 
16
 * <pre>
17
 * &lt;complexType name="UserProfile">
18
 *   &lt;complexContent>
19
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20
 *       &lt;sequence>
21
 *         &lt;element name="Api_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22
 *         &lt;element name="Area" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
23
 *         &lt;element name="Customercode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
24
 *         &lt;element name="IsAdmin" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
25
 *         &lt;element name="LicenceKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
26
 *         &lt;element name="LoginID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
27
 *         &lt;element name="Password" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
28
 *         &lt;element name="Version" type="{http://www.w3.org/2001/XMLSchema}string" 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 = "UserProfile", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.Admin", propOrder = {
39
    "apiType",
40
    "area",
41
    "customercode",
42
    "isAdmin",
43
    "licenceKey",
44
    "loginID",
45
    "password",
46
    "version"
47
})
48
public class UserProfile {
49
 
50
    @XmlElementRef(name = "Api_type", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.Admin", type = JAXBElement.class)
51
    protected JAXBElement<String> apiType;
52
    @XmlElementRef(name = "Area", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.Admin", type = JAXBElement.class)
53
    protected JAXBElement<String> area;
54
    @XmlElementRef(name = "Customercode", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.Admin", type = JAXBElement.class)
55
    protected JAXBElement<String> customercode;
56
    @XmlElementRef(name = "IsAdmin", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.Admin", type = JAXBElement.class)
57
    protected JAXBElement<String> isAdmin;
58
    @XmlElementRef(name = "LicenceKey", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.Admin", type = JAXBElement.class)
59
    protected JAXBElement<String> licenceKey;
60
    @XmlElementRef(name = "LoginID", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.Admin", type = JAXBElement.class)
61
    protected JAXBElement<String> loginID;
62
    @XmlElementRef(name = "Password", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.Admin", type = JAXBElement.class)
63
    protected JAXBElement<String> password;
64
    @XmlElementRef(name = "Version", namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.Admin", type = JAXBElement.class)
65
    protected JAXBElement<String> version;
66
 
67
    /**
68
     * Gets the value of the apiType property.
69
     * 
70
     * @return
71
     *     possible object is
72
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
73
     *     
74
     */
75
    public JAXBElement<String> getApiType() {
76
        return apiType;
77
    }
78
 
79
    /**
80
     * Sets the value of the apiType property.
81
     * 
82
     * @param value
83
     *     allowed object is
84
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
85
     *     
86
     */
87
    public void setApiType(JAXBElement<String> value) {
88
        this.apiType = value;
89
    }
90
 
91
    /**
92
     * Gets the value of the area property.
93
     * 
94
     * @return
95
     *     possible object is
96
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
97
     *     
98
     */
99
    public JAXBElement<String> getArea() {
100
        return area;
101
    }
102
 
103
    /**
104
     * Sets the value of the area property.
105
     * 
106
     * @param value
107
     *     allowed object is
108
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
109
     *     
110
     */
111
    public void setArea(JAXBElement<String> value) {
112
        this.area = value;
113
    }
114
 
115
    /**
116
     * Gets the value of the customercode property.
117
     * 
118
     * @return
119
     *     possible object is
120
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
121
     *     
122
     */
123
    public JAXBElement<String> getCustomercode() {
124
        return customercode;
125
    }
126
 
127
    /**
128
     * Sets the value of the customercode property.
129
     * 
130
     * @param value
131
     *     allowed object is
132
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
133
     *     
134
     */
135
    public void setCustomercode(JAXBElement<String> value) {
136
        this.customercode = value;
137
    }
138
 
139
    /**
140
     * Gets the value of the isAdmin property.
141
     * 
142
     * @return
143
     *     possible object is
144
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
145
     *     
146
     */
147
    public JAXBElement<String> getIsAdmin() {
148
        return isAdmin;
149
    }
150
 
151
    /**
152
     * Sets the value of the isAdmin property.
153
     * 
154
     * @param value
155
     *     allowed object is
156
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
157
     *     
158
     */
159
    public void setIsAdmin(JAXBElement<String> value) {
160
        this.isAdmin = value;
161
    }
162
 
163
    /**
164
     * Gets the value of the licenceKey property.
165
     * 
166
     * @return
167
     *     possible object is
168
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
169
     *     
170
     */
171
    public JAXBElement<String> getLicenceKey() {
172
        return licenceKey;
173
    }
174
 
175
    /**
176
     * Sets the value of the licenceKey property.
177
     * 
178
     * @param value
179
     *     allowed object is
180
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
181
     *     
182
     */
183
    public void setLicenceKey(JAXBElement<String> value) {
184
        this.licenceKey = value;
185
    }
186
 
187
    /**
188
     * Gets the value of the loginID property.
189
     * 
190
     * @return
191
     *     possible object is
192
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
193
     *     
194
     */
195
    public JAXBElement<String> getLoginID() {
196
        return loginID;
197
    }
198
 
199
    /**
200
     * Sets the value of the loginID property.
201
     * 
202
     * @param value
203
     *     allowed object is
204
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
205
     *     
206
     */
207
    public void setLoginID(JAXBElement<String> value) {
208
        this.loginID = value;
209
    }
210
 
211
    /**
212
     * Gets the value of the password property.
213
     * 
214
     * @return
215
     *     possible object is
216
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
217
     *     
218
     */
219
    public JAXBElement<String> getPassword() {
220
        return password;
221
    }
222
 
223
    /**
224
     * Sets the value of the password property.
225
     * 
226
     * @param value
227
     *     allowed object is
228
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
229
     *     
230
     */
231
    public void setPassword(JAXBElement<String> value) {
232
        this.password = value;
233
    }
234
 
235
    /**
236
     * Gets the value of the version property.
237
     * 
238
     * @return
239
     *     possible object is
240
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
241
     *     
242
     */
243
    public JAXBElement<String> getVersion() {
244
        return version;
245
    }
246
 
247
    /**
248
     * Sets the value of the version property.
249
     * 
250
     * @param value
251
     *     allowed object is
252
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
253
     *     
254
     */
255
    public void setVersion(JAXBElement<String> value) {
256
        this.version = value;
257
    }
258
 
259
}