View Javadoc

1   
2   package com.ontotext.ordi.wsmo4rdf.remote.client.fact;
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.ontotext.ordi.wsmo4rdf.remote.client.fact 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 _ServiceLimitExceededException_QNAME = new QName("http://server.remote.wsmo4rdf.ordi.ontotext.com/", "ServiceLimitExceededException");
28      private final static QName _DestroyWsmoSource_QNAME = new QName("http://server.remote.wsmo4rdf.ordi.ontotext.com/", "destroyWsmoSource");
29      private final static QName _GetNewWsmoSource_QNAME = new QName("http://server.remote.wsmo4rdf.ordi.ontotext.com/", "getNewWsmoSource");
30      private final static QName _DestroyWsmoSourceResponse_QNAME = new QName("http://server.remote.wsmo4rdf.ordi.ontotext.com/", "destroyWsmoSourceResponse");
31      private final static QName _GetNewWsmoSourceResponse_QNAME = new QName("http://server.remote.wsmo4rdf.ordi.ontotext.com/", "getNewWsmoSourceResponse");
32      private final static QName _IllegalSourceNameException_QNAME = new QName("http://server.remote.wsmo4rdf.ordi.ontotext.com/", "IllegalSourceNameException");
33  
34      /**
35       * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.ontotext.ordi.wsmo4rdf.remote.client.fact
36       * 
37       */
38      public ObjectFactory() {
39      }
40  
41      /**
42       * Create an instance of {@link DestroyWsmoSourceResponse }
43       * 
44       */
45      public DestroyWsmoSourceResponse createDestroyWsmoSourceResponse() {
46          return new DestroyWsmoSourceResponse();
47      }
48  
49      /**
50       * Create an instance of {@link GetNewWsmoSource }
51       * 
52       */
53      public GetNewWsmoSource createGetNewWsmoSource() {
54          return new GetNewWsmoSource();
55      }
56  
57      /**
58       * Create an instance of {@link GetNewWsmoSourceResponse }
59       * 
60       */
61      public GetNewWsmoSourceResponse createGetNewWsmoSourceResponse() {
62          return new GetNewWsmoSourceResponse();
63      }
64  
65      /**
66       * Create an instance of {@link IllegalSourceNameException }
67       * 
68       */
69      public IllegalSourceNameException createIllegalSourceNameException() {
70          return new IllegalSourceNameException();
71      }
72  
73      /**
74       * Create an instance of {@link ServiceLimitExceededException }
75       * 
76       */
77      public ServiceLimitExceededException createServiceLimitExceededException() {
78          return new ServiceLimitExceededException();
79      }
80  
81      /**
82       * Create an instance of {@link DestroyWsmoSource }
83       * 
84       */
85      public DestroyWsmoSource createDestroyWsmoSource() {
86          return new DestroyWsmoSource();
87      }
88  
89      /**
90       * Create an instance of {@link JAXBElement }{@code <}{@link ServiceLimitExceededException }{@code >}}
91       * 
92       */
93      @XmlElementDecl(namespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", name = "ServiceLimitExceededException")
94      public JAXBElement<ServiceLimitExceededException> createServiceLimitExceededException(ServiceLimitExceededException value) {
95          return new JAXBElement<ServiceLimitExceededException>(_ServiceLimitExceededException_QNAME, ServiceLimitExceededException.class, null, value);
96      }
97  
98      /**
99       * Create an instance of {@link JAXBElement }{@code <}{@link DestroyWsmoSource }{@code >}}
100      * 
101      */
102     @XmlElementDecl(namespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", name = "destroyWsmoSource")
103     public JAXBElement<DestroyWsmoSource> createDestroyWsmoSource(DestroyWsmoSource value) {
104         return new JAXBElement<DestroyWsmoSource>(_DestroyWsmoSource_QNAME, DestroyWsmoSource.class, null, value);
105     }
106 
107     /**
108      * Create an instance of {@link JAXBElement }{@code <}{@link GetNewWsmoSource }{@code >}}
109      * 
110      */
111     @XmlElementDecl(namespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", name = "getNewWsmoSource")
112     public JAXBElement<GetNewWsmoSource> createGetNewWsmoSource(GetNewWsmoSource value) {
113         return new JAXBElement<GetNewWsmoSource>(_GetNewWsmoSource_QNAME, GetNewWsmoSource.class, null, value);
114     }
115 
116     /**
117      * Create an instance of {@link JAXBElement }{@code <}{@link DestroyWsmoSourceResponse }{@code >}}
118      * 
119      */
120     @XmlElementDecl(namespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", name = "destroyWsmoSourceResponse")
121     public JAXBElement<DestroyWsmoSourceResponse> createDestroyWsmoSourceResponse(DestroyWsmoSourceResponse value) {
122         return new JAXBElement<DestroyWsmoSourceResponse>(_DestroyWsmoSourceResponse_QNAME, DestroyWsmoSourceResponse.class, null, value);
123     }
124 
125     /**
126      * Create an instance of {@link JAXBElement }{@code <}{@link GetNewWsmoSourceResponse }{@code >}}
127      * 
128      */
129     @XmlElementDecl(namespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", name = "getNewWsmoSourceResponse")
130     public JAXBElement<GetNewWsmoSourceResponse> createGetNewWsmoSourceResponse(GetNewWsmoSourceResponse value) {
131         return new JAXBElement<GetNewWsmoSourceResponse>(_GetNewWsmoSourceResponse_QNAME, GetNewWsmoSourceResponse.class, null, value);
132     }
133 
134     /**
135      * Create an instance of {@link JAXBElement }{@code <}{@link IllegalSourceNameException }{@code >}}
136      * 
137      */
138     @XmlElementDecl(namespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", name = "IllegalSourceNameException")
139     public JAXBElement<IllegalSourceNameException> createIllegalSourceNameException(IllegalSourceNameException value) {
140         return new JAXBElement<IllegalSourceNameException>(_IllegalSourceNameException_QNAME, IllegalSourceNameException.class, null, value);
141     }
142 
143 }