All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.wicp.tams.common.metrics.entity.statisticbean.StatisticGaugeBean Maven / Gradle / Ivy

/*
 * **********************************************************************
 * Copyright (c) 2022 .
 * All rights reserved.
 * 项目名称:common
 * 项目描述:公共的工具集
 * 版权说明:本软件属andy.zhou([email protected])所有。
 * ***********************************************************************
 */
package net.wicp.tams.common.metrics.entity.statisticbean;

import com.codahale.metrics.Gauge;


public class StatisticGaugeBean  extends StatisticBean{

    public Gauge getGauge() {
        return gauge;
    }

    public void setGauge(Gauge gauge) {
        this.gauge = gauge;
    }

    Gauge gauge;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy