2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
20 package org.openecomp.mso.adapters.vfc.model;
23 * NS Create Input Parameter For VFC Adapter<br>
27 * @version ONAP Amsterdam Release 2017/1/7
29 public class NSResourceInputParameter {
31 private NsOperationKey nsOperationKey;
33 private String subServiceName;
35 private String subServiceDesc;
37 private NsParameters nsParameters;
40 * @return Returns the subServiceName.
42 public String getSubServiceName() {
43 return subServiceName;
47 * @param subServiceName The subServiceName to set.
49 public void setSubServiceName(String subServiceName) {
50 this.subServiceName = subServiceName;
54 * @return Returns the subServiceDesc.
56 public String getSubServiceDesc() {
57 return subServiceDesc;
61 * @param subServiceDesc The subServiceDesc to set.
63 public void setSubServiceDesc(String subServiceDesc) {
64 this.subServiceDesc = subServiceDesc;
68 * @return Returns the nsParameters.
70 public NsParameters getNsParameters() {
75 * @param nsParameters The nsParameters to set.
77 public void setNsParameters(NsParameters nsParameters) {
78 this.nsParameters = nsParameters;
81 public NsOperationKey getNsOperationKey() {
82 return nsOperationKey;
85 public void setNsOperationKey(NsOperationKey nsOperationKey) {
86 this.nsOperationKey = nsOperationKey;