com.alachisoft.ncache.common.caching.statistics.monitoring.CounterCreationData Maven / Gradle / Ivy
package com.alachisoft.ncache.common.caching.statistics.monitoring;
public class CounterCreationData
{
public CounterCreationData(String counterName, String counterHelp, PerformanceCounterType counterType){
setCounterName(counterName);
setCounterHelp(counterHelp);
setCounterType(counterType);
}
private String privateCounterHelp;
public final String getCounterHelp()
{
return privateCounterHelp;
}
public final void setCounterHelp(String value)
{
privateCounterHelp = value;
}
private String privateCounterName;
public final String getCounterName()
{
return privateCounterName;
}
public final void setCounterName(String value)
{
privateCounterName = value;
}
private PerformanceCounterType privateCounterType;
public final PerformanceCounterType getCounterType()
{
return privateCounterType;
}
public final void setCounterType(PerformanceCounterType value)
{
privateCounterType = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy