70b5cf37c25fad444a38444d842db7f75af23ee7.svn-base 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. package com.sinosoft.nwyj.integration.cxf.dataService;
  2. import javax.xml.bind.JAXBElement;
  3. import javax.xml.bind.annotation.XmlElementDecl;
  4. import javax.xml.bind.annotation.XmlRegistry;
  5. import javax.xml.namespace.QName;
  6. /**
  7. * This object contains factory methods for each
  8. * Java content interface and Java element interface
  9. * generated in the com.sinosoft.nwyj.integration.cxf.dc package.
  10. * <p>An ObjectFactory allows you to programatically
  11. * construct new instances of the Java representation
  12. * for XML content. The Java representation of XML
  13. * content can consist of schema derived interfaces
  14. * and classes representing the binding of schema
  15. * type definitions, element declarations and model
  16. * groups. Factory methods for each of these are
  17. * provided in this class.
  18. *
  19. */
  20. @XmlRegistry
  21. public class ObjectFactory {
  22. private final static QName _QryRawDataRequest_QNAME = new QName("http://dc.soa.csg.cn", "qryRawDataRequest");
  23. private final static QName _QryRawDataResponse_QNAME = new QName("http://dc.soa.csg.cn", "qryRawDataResponse");
  24. private final static QName _QryExtDataRequest_QNAME = new QName("http://dc.soa.csg.cn", "qryExtDataRequest");
  25. private final static QName _QryExtDataResponse_QNAME = new QName("http://dc.soa.csg.cn", "qryExtDataResponse");
  26. /**
  27. * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.sinosoft.nwyj.integration.cxf.dc
  28. *
  29. */
  30. public ObjectFactory() {
  31. }
  32. /**
  33. * Create an instance of {@link Param }
  34. *
  35. */
  36. public Param createParam() {
  37. return new Param();
  38. }
  39. /**
  40. * Create an instance of {@link Resp }
  41. *
  42. */
  43. public Resp createResp() {
  44. return new Resp();
  45. }
  46. /**
  47. * Create an instance of {@link ArrayOfXsdString }
  48. *
  49. */
  50. public ArrayOfXsdString createArrayOfXsdString() {
  51. return new ArrayOfXsdString();
  52. }
  53. /**
  54. * Create an instance of {@link Cond }
  55. *
  56. */
  57. public Cond createCond() {
  58. return new Cond();
  59. }
  60. /**
  61. * Create an instance of {@link Conds }
  62. *
  63. */
  64. public Conds createConds() {
  65. return new Conds();
  66. }
  67. /**
  68. * Create an instance of {@link Order }
  69. *
  70. */
  71. public Order createOrder() {
  72. return new Order();
  73. }
  74. /**
  75. * Create an instance of {@link Orders }
  76. *
  77. */
  78. public Orders createOrders() {
  79. return new Orders();
  80. }
  81. /**
  82. * Create an instance of {@link Pageinfo }
  83. *
  84. */
  85. public Pageinfo createPageinfo() {
  86. return new Pageinfo();
  87. }
  88. /**
  89. * Create an instance of {@link Respage }
  90. *
  91. */
  92. public Respage createRespage() {
  93. return new Respage();
  94. }
  95. /**
  96. * Create an instance of {@link Row }
  97. *
  98. */
  99. public Row createRow() {
  100. return new Row();
  101. }
  102. /**
  103. * Create an instance of {@link Rows }
  104. *
  105. */
  106. public Rows createRows() {
  107. return new Rows();
  108. }
  109. /**
  110. * Create an instance of {@link Result }
  111. *
  112. */
  113. public Result createResult() {
  114. return new Result();
  115. }
  116. /**
  117. * Create an instance of {@link JAXBElement }{@code <}{@link Param }{@code >}}
  118. *
  119. */
  120. @XmlElementDecl(namespace = "http://dc.soa.csg.cn", name = "qryRawDataRequest")
  121. public JAXBElement<Param> createQryRawDataRequest(Param value) {
  122. return new JAXBElement<Param>(_QryRawDataRequest_QNAME, Param.class, null, value);
  123. }
  124. /**
  125. * Create an instance of {@link JAXBElement }{@code <}{@link Resp }{@code >}}
  126. *
  127. */
  128. @XmlElementDecl(namespace = "http://dc.soa.csg.cn", name = "qryRawDataResponse")
  129. public JAXBElement<Resp> createQryRawDataResponse(Resp value) {
  130. return new JAXBElement<Resp>(_QryRawDataResponse_QNAME, Resp.class, null, value);
  131. }
  132. /**
  133. * Create an instance of {@link JAXBElement }{@code <}{@link Param }{@code >}}
  134. *
  135. */
  136. @XmlElementDecl(namespace = "http://dc.soa.csg.cn", name = "qryExtDataRequest")
  137. public JAXBElement<Param> createQryExtDataRequest(Param value) {
  138. return new JAXBElement<Param>(_QryExtDataRequest_QNAME, Param.class, null, value);
  139. }
  140. /**
  141. * Create an instance of {@link JAXBElement }{@code <}{@link Resp }{@code >}}
  142. *
  143. */
  144. @XmlElementDecl(namespace = "http://dc.soa.csg.cn", name = "qryExtDataResponse")
  145. public JAXBElement<Resp> createQryExtDataResponse(Resp value) {
  146. return new JAXBElement<Resp>(_QryExtDataResponse_QNAME, Resp.class, null, value);
  147. }
  148. }