123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- package com.sinosoft.nwyj.integration.cxf.dataService;
- 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 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 _QryRawDataRequest_QNAME = new QName("http://dc.soa.csg.cn", "qryRawDataRequest");
- private final static QName _QryRawDataResponse_QNAME = new QName("http://dc.soa.csg.cn", "qryRawDataResponse");
- private final static QName _QryExtDataRequest_QNAME = new QName("http://dc.soa.csg.cn", "qryExtDataRequest");
- private final static QName _QryExtDataResponse_QNAME = new QName("http://dc.soa.csg.cn", "qryExtDataResponse");
- /**
- * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.sinosoft.nwyj.integration.cxf.dc
- *
- */
- public ObjectFactory() {
- }
- /**
- * Create an instance of {@link Param }
- *
- */
- public Param createParam() {
- return new Param();
- }
- /**
- * Create an instance of {@link Resp }
- *
- */
- public Resp createResp() {
- return new Resp();
- }
- /**
- * Create an instance of {@link ArrayOfXsdString }
- *
- */
- public ArrayOfXsdString createArrayOfXsdString() {
- return new ArrayOfXsdString();
- }
- /**
- * Create an instance of {@link Cond }
- *
- */
- public Cond createCond() {
- return new Cond();
- }
- /**
- * Create an instance of {@link Conds }
- *
- */
- public Conds createConds() {
- return new Conds();
- }
- /**
- * Create an instance of {@link Order }
- *
- */
- public Order createOrder() {
- return new Order();
- }
- /**
- * Create an instance of {@link Orders }
- *
- */
- public Orders createOrders() {
- return new Orders();
- }
- /**
- * Create an instance of {@link Pageinfo }
- *
- */
- public Pageinfo createPageinfo() {
- return new Pageinfo();
- }
- /**
- * Create an instance of {@link Respage }
- *
- */
- public Respage createRespage() {
- return new Respage();
- }
- /**
- * Create an instance of {@link Row }
- *
- */
- public Row createRow() {
- return new Row();
- }
- /**
- * Create an instance of {@link Rows }
- *
- */
- public Rows createRows() {
- return new Rows();
- }
- /**
- * Create an instance of {@link Result }
- *
- */
- public Result createResult() {
- return new Result();
- }
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link Param }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://dc.soa.csg.cn", name = "qryRawDataRequest")
- public JAXBElement<Param> createQryRawDataRequest(Param value) {
- return new JAXBElement<Param>(_QryRawDataRequest_QNAME, Param.class, null, value);
- }
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link Resp }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://dc.soa.csg.cn", name = "qryRawDataResponse")
- public JAXBElement<Resp> createQryRawDataResponse(Resp value) {
- return new JAXBElement<Resp>(_QryRawDataResponse_QNAME, Resp.class, null, value);
- }
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link Param }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://dc.soa.csg.cn", name = "qryExtDataRequest")
- public JAXBElement<Param> createQryExtDataRequest(Param value) {
- return new JAXBElement<Param>(_QryExtDataRequest_QNAME, Param.class, null, value);
- }
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link Resp }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://dc.soa.csg.cn", name = "qryExtDataResponse")
- public JAXBElement<Resp> createQryExtDataResponse(Resp value) {
- return new JAXBElement<Resp>(_QryExtDataResponse_QNAME, Resp.class, null, value);
- }
- }
|