Reduce the number of problems in aai-common by removing unused imports
[aai/aai-common.git] / aai-els-onap-logging / src / main / java / org / onap / aai / domain / restPolicyException / ObjectFactory.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 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 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
22 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
23 // Any modifications to this file will be lost upon recompilation of the source schema. 
24 // Generated on: 2015.02.11 at 04:54:39 PM EST 
25 //
26
27 package org.onap.aai.domain.restPolicyException;
28
29 import javax.xml.bind.annotation.XmlRegistry;
30
31 /**
32  * This object contains factory methods for each
33  * Java content interface and Java element interface
34  * generated in the org.onap.aai.domain.restPolicyException package.
35  * <p>
36  * An ObjectFactory allows you to programatically
37  * construct new instances of the Java representation
38  * for XML content. The Java representation of XML
39  * content can consist of schema derived interfaces
40  * and classes representing the binding of schema
41  * type definitions, element declarations and model
42  * groups. Factory methods for each of these are
43  * provided in this class.
44  * 
45  */
46 @XmlRegistry
47 public class ObjectFactory {
48
49     /**
50      * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package:
51      * org.onap.aai.domain.restPolicyException
52      * 
53      */
54     public ObjectFactory() {
55     }
56
57     /**
58      * a
59      * * Create an instance of {@link Fult }.
60      *
61      * @return the fault
62      */
63     public Fault createFault() {
64         return new Fault();
65     }
66
67     /**
68      * Create an instance of {@link Fault.RequestError }
69      *
70      * @return the request error
71      */
72     public Fault.RequestError createFaultRequestError() {
73         return new Fault.RequestError();
74     }
75
76     /**
77      * Create an instance of {@link Fault.RequestError.PolicyException }
78      *
79      * @return the policy exception
80      */
81     public Fault.RequestError.PolicyException createFaultRequestErrorPolicyException() {
82         return new Fault.RequestError.PolicyException();
83     }
84
85     /**
86      * Create an instance of {@link Fault.RequestError.PolicyException.Variables }
87      *
88      * @return the variables
89      */
90     public Fault.RequestError.PolicyException.Variables createFaultRequestErrorPolicyExceptionVariables() {
91         return new Fault.RequestError.PolicyException.Variables();
92     }
93
94 }