a22bb0a64ddbf2f33c9c74d811e4b4fd715451a7
[sdc.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. 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.openecomp.sdcrests.vendorlicense.types;
21
22 public class LimitEntityDto {
23
24     private String id;
25     private String name;
26     private String type;
27     private String description;
28     private String metric;
29     private String value;
30     private String unit;
31     private String aggregationFunction;
32     private String time;
33
34     public String getId() {
35         return id;
36     }
37
38     public void setId(String id) {
39         this.id = id;
40     }
41
42     public String getName() {
43         return name;
44     }
45
46     public void setName(String name) {
47         this.name = name;
48     }
49
50     public String getType() {
51         return type;
52     }
53
54     public void setType(String type) {
55         this.type = type;
56     }
57
58     public String getDescription() {
59         return description;
60     }
61
62     public void setDescription(String description) {
63         this.description = description;
64     }
65
66     public String getMetric() {
67         return metric;
68     }
69
70     public void setMetric(String metric) {
71         this.metric = metric;
72     }
73
74     public String getUnit() {
75         return unit;
76     }
77
78     public void setUnit(String unit) {
79         this.unit = unit;
80     }
81
82     public String getAggregationFunction() {
83         return aggregationFunction;
84     }
85
86     public void setAggregationFunction(String aggregationFunction) {
87         this.aggregationFunction = aggregationFunction;
88     }
89
90     public String getTime() {
91         return time;
92     }
93
94     public void setTime(String time) {
95         this.time = time;
96     }
97
98     public String getValue() {
99         return value;
100     }
101
102     public void setValue(String value) {
103         this.value = value;
104     }
105 }