View Javadoc
1   
2   package org.openehealth.ipf.commons.ihe.hpd.stub.chpidd;
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 org.openehealth.ipf.commons.ihe.hpd.stub.chpidd 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 _DownloadRequest_QNAME = new QName("urn:ehealth-suisse:names:tc:CS:1", "downloadRequest");
28      private final static QName _DownloadResponse_QNAME = new QName("urn:ehealth-suisse:names:tc:CS:1", "downloadResponse");
29  
30      /**
31       * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.openehealth.ipf.commons.ihe.hpd.stub.chpidd
32       * 
33       */
34      public ObjectFactory() {
35      }
36  
37      /**
38       * Create an instance of {@link DownloadRequest }
39       * 
40       */
41      public DownloadRequest createDownloadRequest() {
42          return new DownloadRequest();
43      }
44  
45      /**
46       * Create an instance of {@link DownloadResponse }
47       * 
48       */
49      public DownloadResponse createDownloadResponse() {
50          return new DownloadResponse();
51      }
52  
53      /**
54       * Create an instance of {@link JAXBElement }{@code <}{@link DownloadRequest }{@code >}}
55       * 
56       */
57      @XmlElementDecl(namespace = "urn:ehealth-suisse:names:tc:CS:1", name = "downloadRequest")
58      public JAXBElement<DownloadRequest> createDownloadRequest(DownloadRequest value) {
59          return new JAXBElement<>(_DownloadRequest_QNAME, DownloadRequest.class, null, value);
60      }
61  
62      /**
63       * Create an instance of {@link JAXBElement }{@code <}{@link DownloadResponse }{@code >}}
64       * 
65       */
66      @XmlElementDecl(namespace = "urn:ehealth-suisse:names:tc:CS:1", name = "downloadResponse")
67      public JAXBElement<DownloadResponse> createDownloadResponse(DownloadResponse value) {
68          return new JAXBElement<>(_DownloadResponse_QNAME, DownloadResponse.class, null, value);
69      }
70  
71  }