. If the MBean itself does not
have classpath to the persistent classes, then a stub will be registered
with JNDI and the actual
built upon first
access.
| Method from org.hibernate.jmx.SessionFactoryStub Detail: |
public void close() throws HibernateException {
}
|
public void evict(Class persistentClass) throws HibernateException {
getImpl().evict(persistentClass);
}
|
public void evict(Class persistentClass,
Serializable id) throws HibernateException {
getImpl().evict(persistentClass, id);
}
|
public void evictCollection(String roleName) throws HibernateException {
getImpl().evictCollection(roleName);
}
|
public void evictCollection(String roleName,
Serializable id) throws HibernateException {
getImpl().evictCollection(roleName, id);
}
|
public void evictEntity(String entityName) throws HibernateException {
getImpl().evictEntity(entityName);
}
|
public void evictEntity(String entityName,
Serializable id) throws HibernateException {
getImpl().evictEntity(entityName, id);
}
|
public void evictQueries() throws HibernateException {
getImpl().evictQueries();
}
|
public void evictQueries(String cacheRegion) throws HibernateException {
getImpl().evictQueries(cacheRegion);
}
|
public Map getAllClassMetadata() throws HibernateException {
return getImpl().getAllClassMetadata();
}
|
public Map getAllCollectionMetadata() throws HibernateException {
return getImpl().getAllCollectionMetadata();
}
|
public ClassMetadata getClassMetadata(Class persistentClass) throws HibernateException {
return getImpl().getClassMetadata(persistentClass);
}
|
public ClassMetadata getClassMetadata(String entityName) throws HibernateException {
return getImpl().getClassMetadata(entityName);
}
|
public CollectionMetadata getCollectionMetadata(String roleName) throws HibernateException {
return getImpl().getCollectionMetadata(roleName);
}
|
public Session getCurrentSession() {
return getImpl().getCurrentSession();
}
|
public Set getDefinedFilterNames() {
return getImpl().getDefinedFilterNames();
}
|
public FilterDefinition getFilterDefinition(String filterName) throws HibernateException {
return getImpl().getFilterDefinition( filterName );
}
|
public Reference getReference() throws NamingException {
return new Reference(
SessionFactoryStub.class.getName(),
new StringRefAddr("uuid", uuid),
SessionFactoryObjectFactory.class.getName(),
null
);
}
|
public Statistics getStatistics() {
return getImpl().getStatistics();
}
|
public boolean isClosed() {
return false;
}
|
public Session openSession() throws HibernateException {
return getImpl().openSession();
}
|
public Session openSession(Interceptor interceptor) throws HibernateException {
return getImpl().openSession(interceptor);
}
|
public Session openSession(Connection conn) {
return getImpl().openSession(conn);
}
|
public Session openSession(Connection connection,
Interceptor interceptor) {
return getImpl().openSession(connection, interceptor);
}
|
public StatelessSession openStatelessSession() {
return getImpl().openStatelessSession();
}
|
public StatelessSession openStatelessSession(Connection conn) {
return getImpl().openStatelessSession(conn);
}
|