Replaced all tabs with spaces in java and pom.xml
[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  * NS Create Input Parameter For VFC Adapter<br>
27  * <p>
28  * </p>
29  *
30  * @version ONAP Beijing Release 2018/2/5
31  */
32 public class NSResourceInputParameter {
33
34     private NsOperationKey nsOperationKey;
35
36     private String nsServiceName;
37
38     private String nsServiceDescription;
39
40     private NsParameters nsParameters;
41
42     private NsScaleParameters nsScaleParameters;
43
44
45
46     /**
47      * @return Returns the nsServiceName.
48      */
49     public String getNsServiceName() {
50         return nsServiceName;
51     }
52
53
54     /**
55      * @param nsServiceName The nsServiceName to set.
56      */
57     public void setNsServiceName(String nsServiceName) {
58         this.nsServiceName = nsServiceName;
59     }
60
61
62     /**
63      * @return Returns the nsServiceDescription.
64      */
65     public String getNsServiceDescription() {
66         return nsServiceDescription;
67     }
68
69
70     /**
71      * @param nsServiceDescription The nsServiceDescription to set.
72      */
73     public void setNsServiceDescription(String nsServiceDescription) {
74         this.nsServiceDescription = nsServiceDescription;
75     }
76
77     /**
78      * @return Returns the nsParameters.
79      */
80     public NsParameters getNsParameters() {
81         return nsParameters;
82     }
83
84     /**
85      * @param nsParameters The nsParameters to set.
86      */
87     public void setNsParameters(NsParameters nsParameters) {
88         this.nsParameters = nsParameters;
89     }
90
91     public NsOperationKey getNsOperationKey() {
92         return nsOperationKey;
93     }
94
95     public void setNsOperationKey(NsOperationKey nsOperationKey) {
96         this.nsOperationKey = nsOperationKey;
97     }
98
99     /**
100      * @return Returns the nsScaleParameters.
101      */
102     public NsScaleParameters getNsScaleParameters() {
103         return nsScaleParameters;
104     }
105
106     /**
107      * @param nsScaleParameters The nsScaleParameters to set.
108      */
109     public void setNsScaleParameters(NsScaleParameters nsScaleParameters) {
110         this.nsScaleParameters = nsScaleParameters;
111     }
112
113 }