Containerization feature of SO
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / onap / so / apihandlerinfra / e2eserviceinstancebeans / ScaleNsByStepsData.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2018 CMCC 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
21 package org.onap.so.apihandlerinfra.e2eserviceinstancebeans;
22
23 public class ScaleNsByStepsData {
24
25     private String aspectId;
26
27     private Integer numberOfSteps;
28
29     private String scalingDirection;
30
31     public String getAspectId() {
32         return aspectId;
33     }
34
35     public void setAspectId(String aspectId) {
36         this.aspectId = aspectId;
37     }
38
39     public Integer getNumberOfSteps() {
40         return numberOfSteps;
41     }
42
43     public void setNumberOfSteps(Integer numberOfSteps) {
44         this.numberOfSteps = numberOfSteps;
45     }
46
47     public String getScalingDirection() {
48         return scalingDirection;
49     }
50
51     public void setScalingDirection(String scalingDirection) {
52         this.scalingDirection = scalingDirection;
53     }
54 }