Change the header to SO
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / openecomp / mso / apihandlerinfra / volumebeans / 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.volumebeans;
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 _VolumeParams_QNAME = new QName("http://org.openecomp/mso/infra/volume-request/v1", "volume-params");
56
57     /**
58      * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.openecomp.mso.apihandlerinfra.vnfbeans1
59      * 
60      */
61     public ObjectFactory() {
62     }
63
64     /**
65      * Create an instance of {@link RequestInfo }
66      * 
67      */
68     public RequestInfo createRequestInfo() {
69         return new RequestInfo();
70     }
71
72     /**
73      * Create an instance of {@link VolumeRequest }
74      * 
75      */
76     public VolumeRequest createVolumeRequest() {
77         return new VolumeRequest();
78     }
79
80     /**
81      * Create an instance of {@link VolumeInputs }
82      * 
83      */
84     public VolumeInputs createVolumeInputs() {
85         return new VolumeInputs();
86     }
87
88     /**
89      * Create an instance of {@link VolumeOutputs }
90      * 
91      */
92     public VolumeOutputs createVolumeOutputs() {
93         return new VolumeOutputs();
94     }
95
96     /**
97      * Create an instance of {@link VolumeRequests }
98      * 
99      */
100     public VolumeRequests createVolumeRequests() {
101         return new VolumeRequests();
102     }
103     
104    
105
106    /**
107      * Create an instance of {@link JAXBElement }{@code <}{@link Object }{@code >}}
108      * 
109      */
110     @XmlElementDecl(namespace = "http://org.openecomp/mso/infra/volume-request/v1", name = "volume-params")
111     public JAXBElement<Object> createVolumeParams(Object value) {
112         return new JAXBElement<Object>(_VolumeParams_QNAME, Object.class, null, value);
113     }
114
115 }