Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
20662 kshitij.so 1
 
2
package com.bluedart.tempuri;
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.XmlRootElement;
9
import javax.xml.bind.annotation.XmlType;
10
import com.bluedart.entities.ArrayOfWayBillGenerationRequest;
11
import com.bluedart.entities.UserProfile;
12
 
13
 
14
/**
15
 * <p>Java class for anonymous complex type.
16
 * 
17
 * <p>The following schema fragment specifies the expected content contained within this class.
18
 * 
19
 * <pre>
20
 * &lt;complexType>
21
 *   &lt;complexContent>
22
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
23
 *       &lt;sequence>
24
 *         &lt;element name="Request" type="{http://schemas.datacontract.org/2004/07/SAPI.Entities.WayBillGeneration}ArrayOfWayBillGenerationRequest" minOccurs="0"/>
25
 *         &lt;element name="Profile" type="{http://schemas.datacontract.org/2004/07/SAPI.Entities.Admin}UserProfile" minOccurs="0"/>
26
 *       &lt;/sequence>
27
 *     &lt;/restriction>
28
 *   &lt;/complexContent>
29
 * &lt;/complexType>
30
 * </pre>
31
 * 
32
 * 
33
 */
34
@XmlAccessorType(XmlAccessType.FIELD)
35
@XmlType(name = "", propOrder = {
36
    "request",
37
    "profile"
38
})
39
@XmlRootElement(name = "ImportData")
40
public class ImportData {
41
 
42
    @XmlElementRef(name = "Request", namespace = "http://tempuri.org/", type = JAXBElement.class)
43
    protected JAXBElement<ArrayOfWayBillGenerationRequest> request;
44
    @XmlElementRef(name = "Profile", namespace = "http://tempuri.org/", type = JAXBElement.class)
45
    protected JAXBElement<UserProfile> profile;
46
 
47
    /**
48
     * Gets the value of the request property.
49
     * 
50
     * @return
51
     *     possible object is
52
     *     {@link JAXBElement }{@code <}{@link ArrayOfWayBillGenerationRequest }{@code >}
53
     *     
54
     */
55
    public JAXBElement<ArrayOfWayBillGenerationRequest> getRequest() {
56
        return request;
57
    }
58
 
59
    /**
60
     * Sets the value of the request property.
61
     * 
62
     * @param value
63
     *     allowed object is
64
     *     {@link JAXBElement }{@code <}{@link ArrayOfWayBillGenerationRequest }{@code >}
65
     *     
66
     */
67
    public void setRequest(JAXBElement<ArrayOfWayBillGenerationRequest> value) {
68
        this.request = value;
69
    }
70
 
71
    /**
72
     * Gets the value of the profile property.
73
     * 
74
     * @return
75
     *     possible object is
76
     *     {@link JAXBElement }{@code <}{@link UserProfile }{@code >}
77
     *     
78
     */
79
    public JAXBElement<UserProfile> getProfile() {
80
        return profile;
81
    }
82
 
83
    /**
84
     * Sets the value of the profile property.
85
     * 
86
     * @param value
87
     *     allowed object is
88
     *     {@link JAXBElement }{@code <}{@link UserProfile }{@code >}
89
     *     
90
     */
91
    public void setProfile(JAXBElement<UserProfile> value) {
92
        this.profile = value;
93
    }
94
 
95
}