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.custody_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.custody_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 _KeyBag_QNAME = new QName("urn:uddi-org:custody_v3", "keyBag");
45      private final static QName _DiscardTransferToken_QNAME = new QName("urn:uddi-org:custody_v3", "discard_transferToken");
46      private final static QName _GetTransferToken_QNAME = new QName("urn:uddi-org:custody_v3", "get_transferToken");
47      private final static QName _TransferEntities_QNAME = new QName("urn:uddi-org:custody_v3", "transfer_entities");
48      private final static QName _TransferOperationalInfo_QNAME = new QName("urn:uddi-org:custody_v3", "transferOperationalInfo");
49      private final static QName _TransferToken_QNAME = new QName("urn:uddi-org:custody_v3", "transferToken");
50  
51      /**
52       * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.uddi.custody_v3
53       * 
54       */
55      public ObjectFactory() {
56      }
57  
58      /**
59       * Create an instance of {@link TransferOperationalInfo }
60       * 
61       */
62      public TransferOperationalInfo createTransferOperationalInfo() {
63          return new TransferOperationalInfo();
64      }
65  
66      /**
67       * Create an instance of {@link TransferEntities }
68       * 
69       */
70      public TransferEntities createTransferEntities() {
71          return new TransferEntities();
72      }
73  
74      /**
75       * Create an instance of {@link DiscardTransferToken }
76       * 
77       */
78      public DiscardTransferToken createDiscardTransferToken() {
79          return new DiscardTransferToken();
80      }
81  
82      /**
83       * Create an instance of {@link GetTransferToken }
84       * 
85       */
86      public GetTransferToken createGetTransferToken() {
87          return new GetTransferToken();
88      }
89  
90      /**
91       * Create an instance of {@link KeyBag }
92       * 
93       */
94      public KeyBag createKeyBag() {
95          return new KeyBag();
96      }
97  
98      /**
99       * Create an instance of {@link TransferToken }
100      * 
101      */
102     public TransferToken createTransferToken() {
103         return new TransferToken();
104     }
105 
106     /**
107      * Create an instance of {@link JAXBElement }{@code <}{@link KeyBag }{@code >}}
108      * 
109      */
110     @XmlElementDecl(namespace = "urn:uddi-org:custody_v3", name = "keyBag")
111     public JAXBElement<KeyBag> createKeyBag(KeyBag value) {
112         return new JAXBElement<KeyBag>(_KeyBag_QNAME, KeyBag.class, null, value);
113     }
114 
115     /**
116      * Create an instance of {@link JAXBElement }{@code <}{@link DiscardTransferToken }{@code >}}
117      * 
118      */
119     @XmlElementDecl(namespace = "urn:uddi-org:custody_v3", name = "discard_transferToken")
120     public JAXBElement<DiscardTransferToken> createDiscardTransferToken(DiscardTransferToken value) {
121         return new JAXBElement<DiscardTransferToken>(_DiscardTransferToken_QNAME, DiscardTransferToken.class, null, value);
122     }
123 
124     /**
125      * Create an instance of {@link JAXBElement }{@code <}{@link GetTransferToken }{@code >}}
126      * 
127      */
128     @XmlElementDecl(namespace = "urn:uddi-org:custody_v3", name = "get_transferToken")
129     public JAXBElement<GetTransferToken> createGetTransferToken(GetTransferToken value) {
130         return new JAXBElement<GetTransferToken>(_GetTransferToken_QNAME, GetTransferToken.class, null, value);
131     }
132 
133     /**
134      * Create an instance of {@link JAXBElement }{@code <}{@link TransferEntities }{@code >}}
135      * 
136      */
137     @XmlElementDecl(namespace = "urn:uddi-org:custody_v3", name = "transfer_entities")
138     public JAXBElement<TransferEntities> createTransferEntities(TransferEntities value) {
139         return new JAXBElement<TransferEntities>(_TransferEntities_QNAME, TransferEntities.class, null, value);
140     }
141 
142     /**
143      * Create an instance of {@link JAXBElement }{@code <}{@link TransferOperationalInfo }{@code >}}
144      * 
145      */
146     @XmlElementDecl(namespace = "urn:uddi-org:custody_v3", name = "transferOperationalInfo")
147     public JAXBElement<TransferOperationalInfo> createTransferOperationalInfo(TransferOperationalInfo value) {
148         return new JAXBElement<TransferOperationalInfo>(_TransferOperationalInfo_QNAME, TransferOperationalInfo.class, null, value);
149     }
150 
151     /**
152      * Create an instance of {@link JAXBElement }{@code <}{@link TransferToken }{@code >}}
153      * 
154      */
155     @XmlElementDecl(namespace = "urn:uddi-org:custody_v3", name = "transferToken")
156     public JAXBElement<TransferToken> createTransferToken(TransferToken value) {
157         return new JAXBElement<TransferToken>(_TransferToken_QNAME, TransferToken.class, null, value);
158     }
159 
160 }