Removed below sonar issues:
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / domain / restResponseInfo / ObjectFactory.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22 //
23 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
24 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
25 // Any modifications to this file will be lost upon recompilation of the source schema. 
26 // Generated on: 2015.10.28 at 05:53:17 PM EDT 
27 //
28
29
30 package org.onap.aai.domain.restResponseInfo;
31
32 import javax.xml.bind.annotation.XmlRegistry;
33
34
35 /**
36  * This object contains factory methods for each 
37  * Java content interface and Java element interface 
38  * generated in the org.onap.aai.domain.restResponseInfo package. 
39  * <p>An ObjectFactory allows you to programatically 
40  * construct new instances of the Java representation 
41  * for XML content. The Java representation of XML 
42  * content can consist of schema derived interfaces 
43  * and classes representing the binding of schema 
44  * type definitions, element declarations and model 
45  * groups.  Factory methods for each of these are 
46  * provided in this class.
47  * 
48  */
49 @XmlRegistry
50 public class ObjectFactory {
51
52
53     /**
54      * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.onap.aai.domain.restResponseInfo
55      * 
56      */
57     public ObjectFactory() {
58     }
59
60     /**
61      * Create an instance of {@link Info }.
62      *
63      * @return the info
64      */
65     public Info createInfo() {
66         return new Info();
67     }
68
69     /**
70      * Create an instance of {@link Info.ResponseMessages }
71      *
72      * @return the response messages
73      */
74     public Info.ResponseMessages createInfoResponseMessages() {
75         return new Info.ResponseMessages();
76     }
77
78     /**
79      * Create an instance of {@link Info.ResponseMessages.ResponseMessage }
80      *
81      * @return the response message
82      */
83     public Info.ResponseMessages.ResponseMessage createInfoResponseMessagesResponseMessage() {
84         return new Info.ResponseMessages.ResponseMessage();
85     }
86
87     /**
88      * Create an instance of {@link Info.ResponseMessages.ResponseMessage.Variables }
89      *
90      * @return the variables
91      */
92     public Info.ResponseMessages.ResponseMessage.Variables createInfoResponseMessagesResponseMessageVariables() {
93         return new Info.ResponseMessages.ResponseMessage.Variables();
94     }
95
96 }