Containerization feature of SO
[so.git] / bpmn / so-bpmn-infrastructure-common / src / main / java / org / onap / so / bpmn / infrastructure / vfcmodel / NsScaleParameters.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 import java.util.List;
24
25 /**
26  * <br>
27  * <p>
28  * </p>
29  *
30  * @author
31  * @version ONAP Amsterdam Release 2017-9-26
32  */
33 public class NsScaleParameters {
34
35     private List<ScaleNsByStepsData> scaleNsByStepsData;
36
37     private String scaleType;
38
39
40     private String nsInstanceId;
41
42     /**
43      * @return Returns the scaleNsByStepsData.
44      */
45     public List<ScaleNsByStepsData> getScaleNsByStepsData() {
46         return scaleNsByStepsData;
47     }
48
49     /**
50      * @param scaleNsByStepsData The scaleNsByStepsData to set.
51      */
52     public void setScaleNsByStepsData(List<ScaleNsByStepsData> scaleNsByStepsData) {
53         this.scaleNsByStepsData = scaleNsByStepsData;
54     }
55
56     /**
57      * @return Returns the scale Type.
58      */
59     public String getScaleType() {
60         return scaleType;
61     }
62
63     /**
64      * @param scaleType The scaleType to set.
65      */
66     public void setScaleType(String scaleType) {
67         this.scaleType = scaleType;
68     }
69
70     public String getNsInstanceId() {
71         return nsInstanceId;
72     }
73
74     public void setNsInstanceId(String nsInstanceId) {
75         this.nsInstanceId = nsInstanceId;
76     }
77
78 }