Removed MsoLogger class
[so.git] / bpmn / so-bpmn-infrastructure-common / src / main / java / org / onap / so / bpmn / infrastructure / vfcmodel / NSResourceInputParameter.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2018 CMCC 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
21 package org.onap.so.bpmn.infrastructure.vfcmodel;
22
23
24
25
26 /**
27  * NS Create Input Parameter For VFC Adapter<br>
28  * <p>
29  * </p>
30  *
31  * @version ONAP Beijing Release 2018/2/5
32  */
33 public class NSResourceInputParameter {
34
35     private NsOperationKey nsOperationKey;
36
37     private String nsServiceName;
38
39     private String nsServiceDescription;
40
41     private NsParameters nsParameters;
42
43     private NsScaleParameters nsScaleParameters;
44
45
46
47
48     /**
49      * @return Returns the nsServiceName.
50      */
51     public String getNsServiceName() {
52         return nsServiceName;
53     }
54
55
56     /**
57      * @param nsServiceName The nsServiceName to set.
58      */
59     public void setNsServiceName(String nsServiceName) {
60         this.nsServiceName = nsServiceName;
61     }
62
63
64     /**
65      * @return Returns the nsServiceDescription.
66      */
67     public String getNsServiceDescription() {
68         return nsServiceDescription;
69     }
70
71
72     /**
73      * @param nsServiceDescription The nsServiceDescription to set.
74      */
75     public void setNsServiceDescription(String nsServiceDescription) {
76         this.nsServiceDescription = nsServiceDescription;
77     }
78
79     /**
80      * @return Returns the nsParameters.
81      */
82     public NsParameters getNsParameters() {
83         return nsParameters;
84     }
85
86     /**
87      * @param nsParameters The nsParameters to set.
88      */
89     public void setNsParameters(NsParameters nsParameters) {
90         this.nsParameters = nsParameters;
91     }
92
93     public NsOperationKey getNsOperationKey() {
94         return nsOperationKey;
95     }
96
97     public void setNsOperationKey(NsOperationKey nsOperationKey) {
98         this.nsOperationKey = nsOperationKey;
99     }
100
101     /**
102      * @return Returns the nsScaleParameters.
103      */
104     public NsScaleParameters getNsScaleParameters() {
105         return nsScaleParameters;
106     }
107
108     /**
109      * @param nsScaleParameters The nsScaleParameters to set.
110      */
111     public void setNsScaleParameters(NsScaleParameters nsScaleParameters) {
112         this.nsScaleParameters = nsScaleParameters;
113     }
114
115 }