| CacheStoreMBean.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.mq.pm;
/**
* A cache store
*
* @author <a href="mailto:d_jencks@users.sourceforge.net">david jencks</a>
* @author <a href="mailto:cojonudo14@hotmail.com">Hiram Chirino</a>
* @author <a href="mailto:adrian@jboss.org">Adrian Brock</a>
* @version $Revision: 1.5 $
*/
public interface CacheStoreMBean
{
// Constants -----------------------------------------------------
// Public --------------------------------------------------------
/**
* Get the instance
*
* @return the cache store
*/
Object getInstance();
}
| CacheStoreMBean.java |