| 20662 |
kshitij.so |
1 |
|
|
|
2 |
package com.bluedart.enums;
|
|
|
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 |
|
|
|
9 |
|
|
|
10 |
/**
|
|
|
11 |
* This object contains factory methods for each
|
|
|
12 |
* Java content interface and Java element interface
|
|
|
13 |
* generated in the org.datacontract.schemas._2004._07.sapi_entities_enums package.
|
|
|
14 |
* <p>An ObjectFactory allows you to programatically
|
|
|
15 |
* construct new instances of the Java representation
|
|
|
16 |
* for XML content. The Java representation of XML
|
|
|
17 |
* content can consist of schema derived interfaces
|
|
|
18 |
* and classes representing the binding of schema
|
|
|
19 |
* type definitions, element declarations and model
|
|
|
20 |
* groups. Factory methods for each of these are
|
|
|
21 |
* provided in this class.
|
|
|
22 |
*
|
|
|
23 |
*/
|
|
|
24 |
@XmlRegistry
|
|
|
25 |
public class ObjectFactory {
|
|
|
26 |
|
|
|
27 |
private final static QName _ProductType_QNAME = new QName("http://schemas.datacontract.org/2004/07/SAPI.Entities.Enums.AWBGeneration", "ProductType");
|
|
|
28 |
|
|
|
29 |
/**
|
|
|
30 |
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.datacontract.schemas._2004._07.sapi_entities_enums
|
|
|
31 |
*
|
|
|
32 |
*/
|
|
|
33 |
public ObjectFactory() {
|
|
|
34 |
}
|
|
|
35 |
|
|
|
36 |
/**
|
|
|
37 |
* Create an instance of {@link JAXBElement }{@code <}{@link ProductType }{@code >}}
|
|
|
38 |
*
|
|
|
39 |
*/
|
|
|
40 |
@XmlElementDecl(namespace = "http://schemas.datacontract.org/2004/07/SAPI.Entities.Enums.AWBGeneration", name = "ProductType")
|
|
|
41 |
public JAXBElement<ProductType> createProductType(ProductType value) {
|
|
|
42 |
return new JAXBElement<ProductType>(_ProductType_QNAME, ProductType.class, null, value);
|
|
|
43 |
}
|
|
|
44 |
|
|
|
45 |
}
|