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.21 at 07:28:26 PM CST
- //
- package com.sinosoft.nwyj.integration.cxf.dc.querySingleTabData;
- 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.querySingleTabData 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 _QuerySingleTabDataResponse_QNAME = new QName("http://dc.soa.csg.cn/", "querySingleTabDataResponse");
- private final static QName _QuerySingleTabDataRequest_QNAME = new QName("http://dc.soa.csg.cn/", "querySingleTabDataRequest");
- /**
- * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.sinosoft.nwyj.integration.cxf.dc.querySingleTabData
- *
- */
- public ObjectFactory() {
- }
- /**
- * Create an instance of {@link QuerySingleTabDataRequest }
- *
- */
- public QuerySingleTabDataRequest createQuerySingleTabDataRequest() {
- return new QuerySingleTabDataRequest();
- }
- /**
- * Create an instance of {@link QuerySingleTabDataResponse }
- *
- */
- public QuerySingleTabDataResponse createQuerySingleTabDataResponse() {
- return new QuerySingleTabDataResponse();
- }
- /**
- * Create an instance of {@link InParam }
- *
- */
- public InParam createInParam() {
- return new InParam();
- }
- /**
- * Create an instance of {@link PageInfo }
- *
- */
- public PageInfo createPageInfo() {
- return new PageInfo();
- }
- /**
- * Create an instance of {@link InParamPack }
- *
- */
- public InParamPack createInParamPack() {
- return new InParamPack();
- }
- /**
- * Create an instance of {@link ReturnResult }
- *
- */
- public ReturnResult createReturnResult() {
- return new ReturnResult();
- }
- /**
- * Create an instance of {@link Conds }
- *
- */
- public Conds createConds() {
- return new Conds();
- }
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link QuerySingleTabDataResponse }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://dc.soa.csg.cn/", name = "querySingleTabDataResponse")
- public JAXBElement<QuerySingleTabDataResponse> createQuerySingleTabDataResponse(QuerySingleTabDataResponse value) {
- return new JAXBElement<QuerySingleTabDataResponse>(_QuerySingleTabDataResponse_QNAME, QuerySingleTabDataResponse.class, null, value);
- }
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link QuerySingleTabDataRequest }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://dc.soa.csg.cn/", name = "querySingleTabDataRequest")
- public JAXBElement<QuerySingleTabDataRequest> createQuerySingleTabDataRequest(QuerySingleTabDataRequest value) {
- return new JAXBElement<QuerySingleTabDataRequest>(_QuerySingleTabDataRequest_QNAME, QuerySingleTabDataRequest.class, null, value);
- }
- }
|