cc79ce31adc9a75dfff073b9d68bf286c774818b.svn-base 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. //
  2. // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
  3. // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
  4. // Any modifications to this file will be lost upon recompilation of the source schema.
  5. // Generated on: 2016.07.07 at 05:22:20 PM CST
  6. //
  7. package com.sinosoft.nwyj.integration.cxf.dc.queryCustomData;
  8. import javax.xml.bind.JAXBElement;
  9. import javax.xml.bind.annotation.XmlElementDecl;
  10. import javax.xml.bind.annotation.XmlRegistry;
  11. import javax.xml.namespace.QName;
  12. /**
  13. * This object contains factory methods for each
  14. * Java content interface and Java element interface
  15. * generated in the com.sinosoft.nwyj.integration.cxf.dc.queryCustomData package.
  16. * <p>An ObjectFactory allows you to programatically
  17. * construct new instances of the Java representation
  18. * for XML content. The Java representation of XML
  19. * content can consist of schema derived interfaces
  20. * and classes representing the binding of schema
  21. * type definitions, element declarations and model
  22. * groups. Factory methods for each of these are
  23. * provided in this class.
  24. *
  25. */
  26. @XmlRegistry
  27. public class ObjectFactory {
  28. private final static QName _QueryCustomDataRequest_QNAME = new QName("http://dc.soa.csg.cn/", "queryCustomDataRequest");
  29. private final static QName _QueryCustomDataResponse_QNAME = new QName("http://dc.soa.csg.cn/", "queryCustomDataResponse");
  30. /**
  31. * 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
  32. *
  33. */
  34. public ObjectFactory() {
  35. }
  36. /**
  37. * Create an instance of {@link QueryCustomDataRequest }
  38. *
  39. */
  40. public QueryCustomDataRequest createQueryCustomDataRequest() {
  41. return new QueryCustomDataRequest();
  42. }
  43. /**
  44. * Create an instance of {@link QueryCustomDataResponse }
  45. *
  46. */
  47. public QueryCustomDataResponse createQueryCustomDataResponse() {
  48. return new QueryCustomDataResponse();
  49. }
  50. /**
  51. * Create an instance of {@link CustomConds }
  52. *
  53. */
  54. public CustomConds createCustomConds() {
  55. return new CustomConds();
  56. }
  57. /**
  58. * Create an instance of {@link PageInfo }
  59. *
  60. */
  61. public PageInfo createPageInfo() {
  62. return new PageInfo();
  63. }
  64. /**
  65. * Create an instance of {@link CustomInParamPack }
  66. *
  67. */
  68. public CustomInParamPack createCustomInParamPack() {
  69. return new CustomInParamPack();
  70. }
  71. /**
  72. * Create an instance of {@link ReturnResult }
  73. *
  74. */
  75. public ReturnResult createReturnResult() {
  76. return new ReturnResult();
  77. }
  78. /**
  79. * Create an instance of {@link CustomInParam }
  80. *
  81. */
  82. public CustomInParam createCustomInParam() {
  83. return new CustomInParam();
  84. }
  85. /**
  86. * Create an instance of {@link JAXBElement }{@code <}{@link QueryCustomDataRequest }{@code >}}
  87. *
  88. */
  89. @XmlElementDecl(namespace = "http://dc.soa.csg.cn/", name = "queryCustomDataRequest")
  90. public JAXBElement<QueryCustomDataRequest> createQueryCustomDataRequest(QueryCustomDataRequest value) {
  91. return new JAXBElement<QueryCustomDataRequest>(_QueryCustomDataRequest_QNAME, QueryCustomDataRequest.class, null, value);
  92. }
  93. /**
  94. * Create an instance of {@link JAXBElement }{@code <}{@link QueryCustomDataResponse }{@code >}}
  95. *
  96. */
  97. @XmlElementDecl(namespace = "http://dc.soa.csg.cn/", name = "queryCustomDataResponse")
  98. public JAXBElement<QueryCustomDataResponse> createQueryCustomDataResponse(QueryCustomDataResponse value) {
  99. return new JAXBElement<QueryCustomDataResponse>(_QueryCustomDataResponse_QNAME, QueryCustomDataResponse.class, null, value);
  100. }
  101. }