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 nsServiceName;
35 private String nsServiceDescription;
37 private NsParameters nsParameters;
43 * @return Returns the nsServiceName.
45 public String getNsServiceName() {
51 * @param nsServiceName The nsServiceName to set.
53 public void setNsServiceName(String nsServiceName) {
54 this.nsServiceName = nsServiceName;
59 * @return Returns the nsServiceDescription.
61 public String getNsServiceDescription() {
62 return nsServiceDescription;
67 * @param nsServiceDescription The nsServiceDescription to set.
69 public void setNsServiceDescription(String nsServiceDescription) {
70 this.nsServiceDescription = nsServiceDescription;
74 * @return Returns the nsParameters.
76 public NsParameters getNsParameters() {
81 * @param nsParameters The nsParameters to set.
83 public void setNsParameters(NsParameters nsParameters) {
84 this.nsParameters = nsParameters;
87 public NsOperationKey getNsOperationKey() {
88 return nsOperationKey;
91 public void setNsOperationKey(NsOperationKey nsOperationKey) {
92 this.nsOperationKey = nsOperationKey;