io.gravitee.management.model.analytics.StatsAnalytics Maven / Gradle / Ivy
/**
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.gravitee.management.model.analytics;
/**
* @author Azize ELAMRANI (azize.elamrani at graviteesource.com)
* @author GraviteeSource Team
*/
public class StatsAnalytics implements Analytics {
private Float count;
private Float min;
private Float max;
private Float avg;
private Float sum;
private Float rps;
private Float rpm;
private Float rph;
public Float getCount() {
return count;
}
public void setCount(Float count) {
this.count = count;
}
public Float getMin() {
return min;
}
public void setMin(Float min) {
this.min = min;
}
public Float getMax() {
return max;
}
public void setMax(Float max) {
this.max = max;
}
public Float getAvg() {
return avg;
}
public void setAvg(Float avg) {
this.avg = avg;
}
public Float getSum() {
return sum;
}
public void setSum(Float sum) {
this.sum = sum;
}
public Float getRps() {
return rps;
}
public void setRps(Float rps) {
this.rps = rps;
}
public Float getRpm() {
return rpm;
}
public void setRpm(Float rpm) {
this.rpm = rpm;
}
public Float getRph() {
return rph;
}
public void setRph(Float rph) {
this.rph = rph;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy