Change the header to SO
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / openecomp / mso / apihandlerinfra / vnfbeans / ObjectFactory.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 //
22 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
23 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
24 // Any modifications to this file will be lost upon recompilation of the source schema. 
25 // Generated on: 2015.09.03 at 02:02:13 PM EDT 
26 //
27
28
29 package org.openecomp.mso.apihandlerinfra.vnfbeans;
30
31
32 import javax.xml.bind.JAXBElement;
33 import javax.xml.bind.annotation.XmlElementDecl;
34 import javax.xml.bind.annotation.XmlRegistry;
35 import javax.xml.namespace.QName;
36
37
38 /**
39  * This object contains factory methods for each 
40  * Java content interface and Java element interface 
41  * generated in the org.openecomp.mso.apihandlerinfra.vnfbeans1 package. 
42  * <p>An ObjectFactory allows you to programatically 
43  * construct new instances of the Java representation 
44  * for XML content. The Java representation of XML 
45  * content can consist of schema derived interfaces 
46  * and classes representing the binding of schema 
47  * type definitions, element declarations and model 
48  * groups.  Factory methods for each of these are 
49  * provided in this class.
50  * 
51  */
52 @XmlRegistry
53 public class ObjectFactory {
54
55     private final static QName _VnfParams_QNAME = new QName("http://org.openecomp/mso/infra/vnf-request/v1", "vnf-params");
56     private final static QName _NetworkParams_QNAME = new QName("http://org.openecomp/mso/infra/vnf-request/v1", "network-params");
57
58     /**
59      * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.openecomp.mso.apihandlerinfra.vnfbeans1
60      * 
61      */
62     public ObjectFactory() {
63     }
64
65     /**
66      * Create an instance of {@link VnfInputs }
67      * 
68      */
69     public VnfInputs createVnfInputs() {
70         return new VnfInputs();
71     }
72
73     /**
74      * Create an instance of {@link RequestInfo }
75      * 
76      */
77     public RequestInfo createRequestInfo() {
78         return new RequestInfo();
79     }
80
81     /**
82      * Create an instance of {@link VnfOutputs }
83      * 
84      */
85     public VnfOutputs createVnfOutputs() {
86         return new VnfOutputs();
87     }
88
89     /**
90      * Create an instance of {@link VnfType }
91      * 
92      */
93     public VnfType createVnfType() {
94         return new VnfType();
95     }
96
97     /**
98      * Create an instance of {@link VnfRequest }
99      * 
100      */
101     public VnfRequest createVnfRequest() {
102         return new VnfRequest();
103     }
104
105    
106     /**
107      * Create an instance of {@link VnfTypes }
108      * 
109      */
110     public VnfTypes createVnfTypes() {
111         return new VnfTypes();
112     }
113
114     /**
115      * Create an instance of {@link VnfRequests }
116      * 
117      */
118     public VnfRequests createVnfRequests() {
119         return new VnfRequests();
120     }
121     
122     /**
123      * Create an instance of {@link VfModuleModelName }
124      * 
125      */
126     public VfModuleModelName createVfModuleModelName() {
127         return new VfModuleModelName();
128     }
129     
130     /**
131      * Create an instance of {@link VfModuleModelNames }
132      * 
133      */
134     public VfModuleModelNames createVfModuleModelNames() {
135         return new VfModuleModelNames();
136     }
137
138     
139     
140         
141     /**
142      * Create an instance of {@link JAXBElement }{@code <}{@link Object }{@code >}}
143      * 
144      */
145     @XmlElementDecl(namespace = "http://org.openecomp/mso/infra/vnf-request/v1", name = "vnf-params")
146     public JAXBElement<Object> createVnfParams(Object value) {
147         return new JAXBElement<Object>(_VnfParams_QNAME, Object.class, null, value);
148     }
149
150 }