2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
20 package org.openecomp.sdcrests.vendorlicense.types;
22 public class LimitEntityDto {
27 private String description;
28 private String metric;
31 private String aggregationFunction;
34 public String getId() {
38 public void setId(String id) {
42 public String getName() {
46 public void setName(String name) {
50 public String getType() {
54 public void setType(String type) {
58 public String getDescription() {
62 public void setDescription(String description) {
63 this.description = description;
66 public String getMetric() {
70 public void setMetric(String metric) {
74 public String getUnit() {
78 public void setUnit(String unit) {
82 public String getAggregationFunction() {
83 return aggregationFunction;
86 public void setAggregationFunction(String aggregationFunction) {
87 this.aggregationFunction = aggregationFunction;
90 public String getTime() {
94 public void setTime(String time) {
98 public String getValue() {
102 public void setValue(String value) {