Replaced all tabs with spaces in java and pom.xml
[so.git] / adapters / mso-sdnc-adapter / src / main / java / org / onap / so / adapters / sdnc / 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 package org.onap.so.adapters.sdnc;
22
23
24 import javax.xml.bind.annotation.XmlRegistry;
25
26
27 /**
28  * This object contains factory methods for each Java content interface and Java element interface generated in the
29  * org.onap.so.adapters.sdnc package.
30  * <p>
31  * An ObjectFactory allows you to programatically construct new instances of the Java representation for XML content.
32  * The Java representation of XML content can consist of schema derived interfaces and classes representing the binding
33  * of schema type definitions, element declarations and model groups. Factory methods for each of these are provided in
34  * this class.
35  *
36  */
37 @XmlRegistry
38 public class ObjectFactory {
39
40
41     /**
42      * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package:
43      * org.onap.so.adapters.sdnc
44      *
45      */
46     public ObjectFactory() {
47         /* Empty constructor */
48     }
49
50     /**
51      * Create an instance of {@link RequestHeader }
52      *
53      */
54     public RequestHeader createRequestHeader() {
55         return new RequestHeader();
56     }
57
58     /**
59      * Create an instance of {@link SDNCAdapterResponse }
60      *
61      */
62     public SDNCAdapterResponse createSDNCAdapterResponse() {
63         return new SDNCAdapterResponse();
64     }
65
66     /**
67      * Create an instance of {@link SDNCAdapterRequest }
68      *
69      */
70     public SDNCAdapterRequest createSDNCAdapterRequest() {
71         return new SDNCAdapterRequest();
72     }
73
74 }