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