Replaced all tabs with spaces in java and pom.xml
[so.git] / adapters / mso-vfc-adapter / src / main / java / org / onap / so / adapters / vfc / model / NsCreateReq.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 Huawei Technologies Co., Ltd. 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.vfc.model;
22
23 /**
24  * Network Service Request<br/>
25  * <p>
26  * </p>
27  * 
28  * @author
29  * @version ONAP Amsterdam Sep 2, 2016
30  */
31 public class NsCreateReq {
32
33     CustomerModel context;
34
35     String csarId;
36
37     String nsName;
38
39     String description;
40
41
42     /**
43      * @return Returns the context.
44      */
45     public CustomerModel getContext() {
46         return context;
47     }
48
49
50
51     /**
52      * @param context The context to set.
53      */
54     public void setContext(CustomerModel context) {
55         this.context = context;
56     }
57
58
59     /**
60      * @return Returns the csarId.
61      */
62     public String getCsarId() {
63         return csarId;
64     }
65
66
67     /**
68      * @param csarId The csarId to set.
69      */
70     public void setCsarId(String csarId) {
71         this.csarId = csarId;
72     }
73
74     /**
75      * @return Returns the nsName.
76      */
77     public String getNsName() {
78         return nsName;
79     }
80
81     /**
82      * @param nsName The nsName to set.
83      */
84     public void setNsName(String nsName) {
85         this.nsName = nsName;
86     }
87
88     /**
89      * @return Returns the description.
90      */
91     public String getDescription() {
92         return description;
93     }
94
95     /**
96      * @param description The description to set.
97      */
98     public void setDescription(String description) {
99         this.description = description;
100     }
101
102 }