123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- //
- // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
- // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
- // Any modifications to this file will be lost upon recompilation of the source schema.
- // Generated on: 2016.07.07 at 05:22:20 PM CST
- //
- package com.sinosoft.nwyj.integration.cxf.dc.queryCustomData;
- import javax.xml.bind.JAXBElement;
- import javax.xml.bind.annotation.XmlElementDecl;
- import javax.xml.bind.annotation.XmlRegistry;
- import javax.xml.namespace.QName;
- /**
- * This object contains factory methods for each
- * Java content interface and Java element interface
- * generated in the com.sinosoft.nwyj.integration.cxf.dc.queryCustomData package.
- * <p>An ObjectFactory allows you to programatically
- * construct new instances of the Java representation
- * for XML content. The Java representation of XML
- * content can consist of schema derived interfaces
- * and classes representing the binding of schema
- * type definitions, element declarations and model
- * groups. Factory methods for each of these are
- * provided in this class.
- *
- */
- @XmlRegistry
- public class ObjectFactory {
- private final static QName _QueryCustomDataRequest_QNAME = new QName("http://dc.soa.csg.cn/", "queryCustomDataRequest");
- private final static QName _QueryCustomDataResponse_QNAME = new QName("http://dc.soa.csg.cn/", "queryCustomDataResponse");
- /**
- * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.sinosoft.nwyj.integration.cxf.dc.queryCustomData
- *
- */
- public ObjectFactory() {
- }
- /**
- * Create an instance of {@link QueryCustomDataRequest }
- *
- */
- public QueryCustomDataRequest createQueryCustomDataRequest() {
- return new QueryCustomDataRequest();
- }
- /**
- * Create an instance of {@link QueryCustomDataResponse }
- *
- */
- public QueryCustomDataResponse createQueryCustomDataResponse() {
- return new QueryCustomDataResponse();
- }
- /**
- * Create an instance of {@link CustomConds }
- *
- */
- public CustomConds createCustomConds() {
- return new CustomConds();
- }
- /**
- * Create an instance of {@link PageInfo }
- *
- */
- public PageInfo createPageInfo() {
- return new PageInfo();
- }
- /**
- * Create an instance of {@link CustomInParamPack }
- *
- */
- public CustomInParamPack createCustomInParamPack() {
- return new CustomInParamPack();
- }
- /**
- * Create an instance of {@link ReturnResult }
- *
- */
- public ReturnResult createReturnResult() {
- return new ReturnResult();
- }
- /**
- * Create an instance of {@link CustomInParam }
- *
- */
- public CustomInParam createCustomInParam() {
- return new CustomInParam();
- }
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link QueryCustomDataRequest }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://dc.soa.csg.cn/", name = "queryCustomDataRequest")
- public JAXBElement<QueryCustomDataRequest> createQueryCustomDataRequest(QueryCustomDataRequest value) {
- return new JAXBElement<QueryCustomDataRequest>(_QueryCustomDataRequest_QNAME, QueryCustomDataRequest.class, null, value);
- }
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link QueryCustomDataResponse }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://dc.soa.csg.cn/", name = "queryCustomDataResponse")
- public JAXBElement<QueryCustomDataResponse> createQueryCustomDataResponse(QueryCustomDataResponse value) {
- return new JAXBElement<QueryCustomDataResponse>(_QueryCustomDataResponse_QNAME, QueryCustomDataResponse.class, null, value);
- }
- }
|