ca1807ce624c53d6e2fe0ac15a5fdf64abd57f3e
[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 subServiceName;
34
35     private String subServiceDesc;
36
37     private NsParameters nsParameters;
38
39     /**
40      * @return Returns the subServiceName.
41      */
42     public String getSubServiceName() {
43         return subServiceName;
44     }
45
46     /**
47      * @param subServiceName The subServiceName to set.
48      */
49     public void setSubServiceName(String subServiceName) {
50         this.subServiceName = subServiceName;
51     }
52
53     /**
54      * @return Returns the subServiceDesc.
55      */
56     public String getSubServiceDesc() {
57         return subServiceDesc;
58     }
59
60     /**
61      * @param subServiceDesc The subServiceDesc to set.
62      */
63     public void setSubServiceDesc(String subServiceDesc) {
64         this.subServiceDesc = subServiceDesc;
65     }
66
67     /**
68      * @return Returns the nsParameters.
69      */
70     public NsParameters getNsParameters() {
71         return nsParameters;
72     }
73
74     /**
75      * @param nsParameters The nsParameters to set.
76      */
77     public void setNsParameters(NsParameters nsParameters) {
78         this.nsParameters = nsParameters;
79     }
80
81     public NsOperationKey getNsOperationKey() {
82         return nsOperationKey;
83     }
84
85     public void setNsOperationKey(NsOperationKey nsOperationKey) {
86         this.nsOperationKey = nsOperationKey;
87     }
88
89 }