This project has retired. For details please refer to its Attic page.
ObjectFactory xref
View Javadoc
1   /*
2    * Copyright 2001-2008 The Apache Software Foundation.
3    * 
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   *
16   */
17  
18  
19  package org.uddi.vscache_v3;
20  
21  import javax.xml.bind.JAXBElement;
22  import javax.xml.bind.annotation.XmlElementDecl;
23  import javax.xml.bind.annotation.XmlRegistry;
24  import javax.xml.namespace.QName;
25  
26  
27  /**
28   * This object contains factory methods for each 
29   * Java content interface and Java element interface 
30   * generated in the org.uddi.vscache_v3 package. 
31   * <p>An ObjectFactory allows you to programatically 
32   * construct new instances of the Java representation 
33   * for XML content. The Java representation of XML 
34   * content can consist of schema derived interfaces 
35   * and classes representing the binding of schema 
36   * type definitions, element declarations and model 
37   * groups.  Factory methods for each of these are 
38   * provided in this class.
39   * 
40   */
41  @XmlRegistry
42  public class ObjectFactory {
43  
44      private final static QName _GetAllValidValues_QNAME = new QName("urn:uddi-org:vscache_v3", "get_allValidValues");
45      private final static QName _KeyValue_QNAME = new QName("urn:uddi-org:vscache_v3", "keyValue");
46      private final static QName _ValidValue_QNAME = new QName("urn:uddi-org:vscache_v3", "validValue");
47      private final static QName _ValidValuesList_QNAME = new QName("urn:uddi-org:vscache_v3", "validValuesList");
48      private final static QName _ChunkToken_QNAME = new QName("urn:uddi-org:vscache_v3", "chunkToken");
49  
50      /**
51       * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.uddi.vscache_v3
52       * 
53       */
54      public ObjectFactory() {
55      }
56  
57      /**
58       * Create an instance of {@link ValidValuesList }
59       * 
60       */
61      public ValidValuesList createValidValuesList() {
62          return new ValidValuesList();
63      }
64  
65      /**
66       * Create an instance of {@link ValidValue }
67       * 
68       */
69      public ValidValue createValidValue() {
70          return new ValidValue();
71      }
72  
73      /**
74       * Create an instance of {@link GetAllValidValues }
75       * 
76       */
77      public GetAllValidValues createGetAllValidValues() {
78          return new GetAllValidValues();
79      }
80  
81      /**
82       * Create an instance of {@link JAXBElement }{@code <}{@link GetAllValidValues }{@code >}}
83       * 
84       */
85      @XmlElementDecl(namespace = "urn:uddi-org:vscache_v3", name = "get_allValidValues")
86      public JAXBElement<GetAllValidValues> createGetAllValidValues(GetAllValidValues value) {
87          return new JAXBElement<GetAllValidValues>(_GetAllValidValues_QNAME, GetAllValidValues.class, null, value);
88      }
89  
90      /**
91       * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
92       * 
93       */
94      @XmlElementDecl(namespace = "urn:uddi-org:vscache_v3", name = "keyValue")
95      public JAXBElement<String> createKeyValue(String value) {
96          return new JAXBElement<String>(_KeyValue_QNAME, String.class, null, value);
97      }
98  
99      /**
100      * Create an instance of {@link JAXBElement }{@code <}{@link ValidValue }{@code >}}
101      * 
102      */
103     @XmlElementDecl(namespace = "urn:uddi-org:vscache_v3", name = "validValue")
104     public JAXBElement<ValidValue> createValidValue(ValidValue value) {
105         return new JAXBElement<ValidValue>(_ValidValue_QNAME, ValidValue.class, null, value);
106     }
107 
108     /**
109      * Create an instance of {@link JAXBElement }{@code <}{@link ValidValuesList }{@code >}}
110      * 
111      */
112     @XmlElementDecl(namespace = "urn:uddi-org:vscache_v3", name = "validValuesList")
113     public JAXBElement<ValidValuesList> createValidValuesList(ValidValuesList value) {
114         return new JAXBElement<ValidValuesList>(_ValidValuesList_QNAME, ValidValuesList.class, null, value);
115     }
116 
117     /**
118      * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
119      * 
120      */
121     @XmlElementDecl(namespace = "urn:uddi-org:vscache_v3", name = "chunkToken")
122     public JAXBElement<String> createChunkToken(String value) {
123         return new JAXBElement<String>(_ChunkToken_QNAME, String.class, null, value);
124     }
125 
126 }