f88a11dee85447452d58a6232577e79fa7876d5b
[so.git] /
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  * NS Create Input Parameter For VFC Adapter<br>
24  * <p>
25  * </p>
26  * 
27  * @version ONAP Amsterdam Release 2017/1/7
28  */
29 public class NSResourceInputParameter {
30
31     private NsOperationKey nsOperationKey;
32
33     private String nsServiceName;
34
35     private String nsServiceDescription;
36
37     private NsParameters nsParameters;
38
39
40
41     
42     /**
43      * @return Returns the nsServiceName.
44      */
45     public String getNsServiceName() {
46         return nsServiceName;
47     }
48
49     
50     /**
51      * @param nsServiceName The nsServiceName to set.
52      */
53     public void setNsServiceName(String nsServiceName) {
54         this.nsServiceName = nsServiceName;
55     }
56
57     
58     /**
59      * @return Returns the nsServiceDescription.
60      */
61     public String getNsServiceDescription() {
62         return nsServiceDescription;
63     }
64
65     
66     /**
67      * @param nsServiceDescription The nsServiceDescription to set.
68      */
69     public void setNsServiceDescription(String nsServiceDescription) {
70         this.nsServiceDescription = nsServiceDescription;
71     }
72
73     /**
74      * @return Returns the nsParameters.
75      */
76     public NsParameters getNsParameters() {
77         return nsParameters;
78     }
79
80     /**
81      * @param nsParameters The nsParameters to set.
82      */
83     public void setNsParameters(NsParameters nsParameters) {
84         this.nsParameters = nsParameters;
85     }
86
87     public NsOperationKey getNsOperationKey() {
88         return nsOperationKey;
89     }
90
91     public void setNsOperationKey(NsOperationKey nsOperationKey) {
92         this.nsOperationKey = nsOperationKey;
93     }
94
95 }