[SDC] Onboarding 1710 rebase.
[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 package org.openecomp.sdcrests.vendorlicense.types;
2
3 public class LimitEntityDto {
4
5   private String id;
6   private String name;
7   private String type;
8   private String description;
9   private String metric;
10   private Integer value;
11   private Integer unit;
12   private String aggregationFunction;
13   private String time;
14
15   public String getId() {
16     return id;
17   }
18
19   public void setId(String id) {
20     this.id = id;
21   }
22
23   public String getName() {
24     return name;
25   }
26
27   public void setName(String name) {
28     this.name = name;
29   }
30
31   public String getType() {
32     return type;
33   }
34
35   public void setType(String type) {
36     this.type = type;
37   }
38
39   public String getDescription() {
40     return description;
41   }
42
43   public void setDescription(String description) {
44     this.description = description;
45   }
46
47   public String getMetric() {
48     return metric;
49   }
50
51   public void setMetric(String metric) {
52     this.metric = metric;
53   }
54
55   public Integer getUnit() {
56     return unit;
57   }
58
59   public void setUnit(Integer unit) {
60     this.unit = unit;
61   }
62
63   public String getAggregationFunction() {
64     return aggregationFunction;
65   }
66
67   public void setAggregationFunction(String aggregationFunction) {
68     this.aggregationFunction = aggregationFunction;
69   }
70
71   public String getTime() {
72     return time;
73   }
74
75   public void setTime(String time) {
76     this.time = time;
77   }
78
79   public Integer getValue() {
80     return value;
81   }
82
83   public void setValue(Integer value) {
84     this.value = value;
85   }
86 }