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