/Prototipo/wsConsume/build/generated-sources/jax-ws/wsconsume/ObjectFactory.java

http://prototipomemoria.googlecode.com/ · Java · 107 lines · 42 code · 15 blank · 50 comment · 0 complexity · a07afa50aaf14f700dfe37f71627b0d3 MD5 · raw file

  1. package wsconsume;
  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 wsconsume 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 _GetDataFiltro_QNAME = new QName("http://ws.memoria/", "getDataFiltro");
  23. private final static QName _GetData_QNAME = new QName("http://ws.memoria/", "getData");
  24. private final static QName _GetDataFiltroResponse_QNAME = new QName("http://ws.memoria/", "getDataFiltroResponse");
  25. private final static QName _GetDataResponse_QNAME = new QName("http://ws.memoria/", "getDataResponse");
  26. /**
  27. * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: wsconsume
  28. *
  29. */
  30. public ObjectFactory() {
  31. }
  32. /**
  33. * Create an instance of {@link GetData }
  34. *
  35. */
  36. public GetData createGetData() {
  37. return new GetData();
  38. }
  39. /**
  40. * Create an instance of {@link GetDataFiltroResponse }
  41. *
  42. */
  43. public GetDataFiltroResponse createGetDataFiltroResponse() {
  44. return new GetDataFiltroResponse();
  45. }
  46. /**
  47. * Create an instance of {@link GetDataFiltro }
  48. *
  49. */
  50. public GetDataFiltro createGetDataFiltro() {
  51. return new GetDataFiltro();
  52. }
  53. /**
  54. * Create an instance of {@link GetDataResponse }
  55. *
  56. */
  57. public GetDataResponse createGetDataResponse() {
  58. return new GetDataResponse();
  59. }
  60. /**
  61. * Create an instance of {@link JAXBElement }{@code <}{@link GetDataFiltro }{@code >}}
  62. *
  63. */
  64. @XmlElementDecl(namespace = "http://ws.memoria/", name = "getDataFiltro")
  65. public JAXBElement<GetDataFiltro> createGetDataFiltro(GetDataFiltro value) {
  66. return new JAXBElement<GetDataFiltro>(_GetDataFiltro_QNAME, GetDataFiltro.class, null, value);
  67. }
  68. /**
  69. * Create an instance of {@link JAXBElement }{@code <}{@link GetData }{@code >}}
  70. *
  71. */
  72. @XmlElementDecl(namespace = "http://ws.memoria/", name = "getData")
  73. public JAXBElement<GetData> createGetData(GetData value) {
  74. return new JAXBElement<GetData>(_GetData_QNAME, GetData.class, null, value);
  75. }
  76. /**
  77. * Create an instance of {@link JAXBElement }{@code <}{@link GetDataFiltroResponse }{@code >}}
  78. *
  79. */
  80. @XmlElementDecl(namespace = "http://ws.memoria/", name = "getDataFiltroResponse")
  81. public JAXBElement<GetDataFiltroResponse> createGetDataFiltroResponse(GetDataFiltroResponse value) {
  82. return new JAXBElement<GetDataFiltroResponse>(_GetDataFiltroResponse_QNAME, GetDataFiltroResponse.class, null, value);
  83. }
  84. /**
  85. * Create an instance of {@link JAXBElement }{@code <}{@link GetDataResponse }{@code >}}
  86. *
  87. */
  88. @XmlElementDecl(namespace = "http://ws.memoria/", name = "getDataResponse")
  89. public JAXBElement<GetDataResponse> createGetDataResponse(GetDataResponse value) {
  90. return new JAXBElement<GetDataResponse>(_GetDataResponse_QNAME, GetDataResponse.class, null, value);
  91. }
  92. }