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.XmlElementDecl;
6
import javax.xml.bind.annotation.XmlRegistry;
7
import javax.xml.namespace.QName;
8
import com.bluedart.entities.ArrayOfWayBillGenerationRequest;
9
import com.bluedart.entities.ArrayOfWayBillGenerationResponse;
10
import com.bluedart.entities.UserProfile;
11
import com.bluedart.entities.WayBillGenerationRequest;
12
import com.bluedart.entities.WayBillGenerationResponse;
13
 
14
 
15
/**
16
 * This object contains factory methods for each 
17
 * Java content interface and Java element interface 
18
 * generated in the org.tempuri package. 
19
 * <p>An ObjectFactory allows you to programatically 
20
 * construct new instances of the Java representation 
21
 * for XML content. The Java representation of XML 
22
 * content can consist of schema derived interfaces 
23
 * and classes representing the binding of schema 
24
 * type definitions, element declarations and model 
25
 * groups.  Factory methods for each of these are 
26
 * provided in this class.
27
 * 
28
 */
29
@XmlRegistry
30
public class ObjectFactory {
31
 
32
    private final static QName _ImportDataResponseImportDataResult_QNAME = new QName("http://tempuri.org/", "ImportDataResult");
33
    private final static QName _GenerateWayBillRequest_QNAME = new QName("http://tempuri.org/", "Request");
34
    private final static QName _GenerateWayBillProfile_QNAME = new QName("http://tempuri.org/", "Profile");
35
    private final static QName _GenerateWayBillResponseGenerateWayBillResult_QNAME = new QName("http://tempuri.org/", "GenerateWayBillResult");
36
 
37
    /**
38
     * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.tempuri
39
     * 
40
     */
41
    public ObjectFactory() {
42
    }
43
 
44
    /**
45
     * Create an instance of {@link GenerateWayBill }
46
     * 
47
     */
48
    public GenerateWayBill createGenerateWayBill() {
49
        return new GenerateWayBill();
50
    }
51
 
52
    /**
53
     * Create an instance of {@link GenerateWayBillResponse }
54
     * 
55
     */
56
    public GenerateWayBillResponse createGenerateWayBillResponse() {
57
        return new GenerateWayBillResponse();
58
    }
59
 
60
    /**
61
     * Create an instance of {@link ImportDataResponse }
62
     * 
63
     */
64
    public ImportDataResponse createImportDataResponse() {
65
        return new ImportDataResponse();
66
    }
67
 
68
    /**
69
     * Create an instance of {@link ImportData }
70
     * 
71
     */
72
    public ImportData createImportData() {
73
        return new ImportData();
74
    }
75
 
76
    /**
77
     * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfWayBillGenerationResponse }{@code >}}
78
     * 
79
     */
80
    @XmlElementDecl(namespace = "http://tempuri.org/", name = "ImportDataResult", scope = ImportDataResponse.class)
81
    public JAXBElement<ArrayOfWayBillGenerationResponse> createImportDataResponseImportDataResult(ArrayOfWayBillGenerationResponse value) {
82
        return new JAXBElement<ArrayOfWayBillGenerationResponse>(_ImportDataResponseImportDataResult_QNAME, ArrayOfWayBillGenerationResponse.class, ImportDataResponse.class, value);
83
    }
84
 
85
    /**
86
     * Create an instance of {@link JAXBElement }{@code <}{@link WayBillGenerationRequest }{@code >}}
87
     * 
88
     */
89
    @XmlElementDecl(namespace = "http://tempuri.org/", name = "Request", scope = GenerateWayBill.class)
90
    public JAXBElement<WayBillGenerationRequest> createGenerateWayBillRequest(WayBillGenerationRequest value) {
91
        return new JAXBElement<WayBillGenerationRequest>(_GenerateWayBillRequest_QNAME, WayBillGenerationRequest.class, GenerateWayBill.class, value);
92
    }
93
 
94
    /**
95
     * Create an instance of {@link JAXBElement }{@code <}{@link UserProfile }{@code >}}
96
     * 
97
     */
98
    @XmlElementDecl(namespace = "http://tempuri.org/", name = "Profile", scope = GenerateWayBill.class)
99
    public JAXBElement<UserProfile> createGenerateWayBillProfile(UserProfile value) {
100
        return new JAXBElement<UserProfile>(_GenerateWayBillProfile_QNAME, UserProfile.class, GenerateWayBill.class, value);
101
    }
102
 
103
    /**
104
     * Create an instance of {@link JAXBElement }{@code <}{@link WayBillGenerationResponse }{@code >}}
105
     * 
106
     */
107
    @XmlElementDecl(namespace = "http://tempuri.org/", name = "GenerateWayBillResult", scope = GenerateWayBillResponse.class)
108
    public JAXBElement<WayBillGenerationResponse> createGenerateWayBillResponseGenerateWayBillResult(WayBillGenerationResponse value) {
109
        return new JAXBElement<WayBillGenerationResponse>(_GenerateWayBillResponseGenerateWayBillResult_QNAME, WayBillGenerationResponse.class, GenerateWayBillResponse.class, value);
110
    }
111
 
112
    /**
113
     * Create an instance of {@link JAXBElement }{@code <}{@link ArrayOfWayBillGenerationRequest }{@code >}}
114
     * 
115
     */
116
    @XmlElementDecl(namespace = "http://tempuri.org/", name = "Request", scope = ImportData.class)
117
    public JAXBElement<ArrayOfWayBillGenerationRequest> createImportDataRequest(ArrayOfWayBillGenerationRequest value) {
118
        return new JAXBElement<ArrayOfWayBillGenerationRequest>(_GenerateWayBillRequest_QNAME, ArrayOfWayBillGenerationRequest.class, ImportData.class, value);
119
    }
120
 
121
    /**
122
     * Create an instance of {@link JAXBElement }{@code <}{@link UserProfile }{@code >}}
123
     * 
124
     */
125
    @XmlElementDecl(namespace = "http://tempuri.org/", name = "Profile", scope = ImportData.class)
126
    public JAXBElement<UserProfile> createImportDataProfile(UserProfile value) {
127
        return new JAXBElement<UserProfile>(_GenerateWayBillProfile_QNAME, UserProfile.class, ImportData.class, value);
128
    }
129
 
130
}