org.hibernate.jmx.StatisticsServiceMBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate Show documentation
Show all versions of hibernate Show documentation
Relational Persistence for Java
//$Id: StatisticsServiceMBean.java 4332 2004-08-15 12:55:28Z oneovthafew $
package org.hibernate.jmx;
import org.hibernate.stat.Statistics;
/**
* MBean exposing Session Factory statistics
*
* @see org.hibernate.stat.Statistics
* @author Emmanuel Bernard
*/
public interface StatisticsServiceMBean extends Statistics {
/**
* Publish the statistics of a session factory bound to
* the default JNDI context
* @param sfJNDIName session factory jndi name
*/
public abstract void setSessionFactoryJNDIName(String sfJNDIName);
}