Containerization feature of SO
[so.git] / adapters / mso-vfc-adapter / src / main / java / org / onap / so / adapters / vfc / model / ScaleNsByStepsData.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 CMCC 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
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 package org.onap.so.adapters.vfc.model;
21
22 /**
23  * <br>
24  * <p>
25  * </p>
26  * 
27  * @author
28  * @version ONAP Amsterdam Release 2017-9-26
29  */
30 public class ScaleNsByStepsData {
31
32     /**
33      * scaling Direction
34      */
35     private String scalingDirection;
36     
37     /**
38      * aspect ID
39      */
40     private String aspectId;
41     
42     /**
43      * number of Steps
44      */
45     private Integer numberOfSteps;
46
47     /**
48      * @return Returns the scalingDirection.
49      */
50     public String getScalingDirection() {
51         return scalingDirection;
52     }
53
54     /**
55      * @param scalingDirection The scalingDirection to set.
56      */
57     public void setScalingDirection(String scalingDirection) {
58         this.scalingDirection = scalingDirection;
59     }
60
61     /**
62      * @return Returns the aspectId.
63      */
64         public String getAspectId() {
65                 return aspectId;
66         }
67
68     /**
69      * @param aspectId The aspectId to set.
70      */
71         public void setAspectId(String aspectId) {
72                 this.aspectId = aspectId;
73         }
74
75     /**
76      * @return Returns the numberOfSteps.
77      */
78         public Integer getNumberOfSteps() {
79                 return numberOfSteps;
80         }
81
82     /**
83      * @param numberOfSteps The numberOfSteps to set.
84      */
85         public void setNumberOfSteps(int numberOfSteps) {
86                 this.numberOfSteps = numberOfSteps;
87         }
88 }