View Javadoc

1   
2   package com.aggregator;
3   
4   import javax.xml.bind.JAXBElement;
5   import javax.xml.bind.annotation.XmlElementDecl;
6   import javax.xml.bind.annotation.XmlRegistry;
7   import javax.xml.namespace.QName;
8   
9   
10  /**
11   * This object contains factory methods for each 
12   * Java content interface and Java element interface 
13   * generated in the com.aggregator package. 
14   * <p>An ObjectFactory allows you to programatically 
15   * construct new instances of the Java representation 
16   * for XML content. The Java representation of XML 
17   * content can consist of schema derived interfaces 
18   * and classes representing the binding of schema 
19   * type definitions, element declarations and model 
20   * groups.  Factory methods for each of these are 
21   * provided in this class.
22   * 
23   */
24  @XmlRegistry
25  public class ObjectFactory {
26  
27      private final static QName _SubmitReport_QNAME = new QName("http://ws.handling.interfaces.dddsample.citerus.se/", "submitReport");
28      private final static QName _HandlingReportErrors_QNAME = new QName("http://ws.handling.interfaces.dddsample.citerus.se/", "HandlingReportErrors");
29      private final static QName _SubmitReportResponse_QNAME = new QName("http://ws.handling.interfaces.dddsample.citerus.se/", "submitReportResponse");
30  
31      /**
32       * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.aggregator
33       * 
34       */
35      public ObjectFactory() {
36      }
37  
38      /**
39       * Create an instance of {@link HandlingReportErrors }
40       * 
41       */
42      public HandlingReportErrors createHandlingReportErrors() {
43          return new HandlingReportErrors();
44      }
45  
46      /**
47       * Create an instance of {@link SubmitReportResponse }
48       * 
49       */
50      public SubmitReportResponse createSubmitReportResponse() {
51          return new SubmitReportResponse();
52      }
53  
54      /**
55       * Create an instance of {@link HandlingReport }
56       * 
57       */
58      public HandlingReport createHandlingReport() {
59          return new HandlingReport();
60      }
61  
62      /**
63       * Create an instance of {@link SubmitReport }
64       * 
65       */
66      public SubmitReport createSubmitReport() {
67          return new SubmitReport();
68      }
69  
70      /**
71       * Create an instance of {@link JAXBElement }{@code <}{@link SubmitReport }{@code >}}
72       * 
73       */
74      @XmlElementDecl(namespace = "http://ws.handling.interfaces.dddsample.citerus.se/", name = "submitReport")
75      public JAXBElement<SubmitReport> createSubmitReport(SubmitReport value) {
76          return new JAXBElement<SubmitReport>(_SubmitReport_QNAME, SubmitReport.class, null, value);
77      }
78  
79      /**
80       * Create an instance of {@link JAXBElement }{@code <}{@link HandlingReportErrors }{@code >}}
81       * 
82       */
83      @XmlElementDecl(namespace = "http://ws.handling.interfaces.dddsample.citerus.se/", name = "HandlingReportErrors")
84      public JAXBElement<HandlingReportErrors> createHandlingReportErrors(HandlingReportErrors value) {
85          return new JAXBElement<HandlingReportErrors>(_HandlingReportErrors_QNAME, HandlingReportErrors.class, null, value);
86      }
87  
88      /**
89       * Create an instance of {@link JAXBElement }{@code <}{@link SubmitReportResponse }{@code >}}
90       * 
91       */
92      @XmlElementDecl(namespace = "http://ws.handling.interfaces.dddsample.citerus.se/", name = "submitReportResponse")
93      public JAXBElement<SubmitReportResponse> createSubmitReportResponse(SubmitReportResponse value) {
94          return new JAXBElement<SubmitReportResponse>(_SubmitReportResponse_QNAME, SubmitReportResponse.class, null, value);
95      }
96  
97  }