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

org.hibernate.jmx.StatisticsServiceMBean Maven / Gradle / Ivy

There is a newer version: 6.5.0.CR2
Show newest version
//$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
 * @deprecated See HHH-6190 for details
 */
@Deprecated
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy