com.sun.appserv.util.cache.mbeans.JmxBaseCacheMBean Maven / Gradle / Ivy
/*
* Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
/**
* @Version $Id: JmxBaseCacheMBean.java,v 1.4 2005/12/25 04:25:22 tcfujii Exp $
* Created on May 4, 2005 11:43 AM
*/
package com.sun.appserv.util.cache.mbeans;
/**
* This interface defines the attributes exposed by the BaseCache MBean
*
* @author Krishnamohan Meduri ([email protected])
*
*/
public interface JmxBaseCacheMBean {
/**
* Returns a unique identifier for this MBean inside the domain
*/
public String getName();
/**
* Returns maximum possible number of entries
*/
public Integer getMaxEntries();
/**
* Returns threshold. This when reached, an overflow will occur
*/
public Integer getThreshold();
/**
* Returns current number of buckets
*/
public Integer getTableSize();
/**
* Returns current number of Entries
*/
public Integer getEntryCount();
/**
* Return the number of cache hits
*/
public Integer getHitCount();
/**
* Returns the number of cache misses
*/
public Integer getMissCount();
/**
* Returns the number of entries that have been removed
*/
public Integer getRemovalCount();
/**
* Returns the number of values that have been refreshed
* (replaced with a new value in an existing extry)
*/
public Integer getRefreshCount();
/**
* Returns the number of times that an overflow has occurred
*/
public Integer getOverflowCount();
/**
* Returns the number of times new entries have been added
*/
public Integer getAddCount();
}