Uses of Interface
org.hibernate.Interceptor

Packages that use Interceptor
org.hibernate This package defines the central Hibernate APIs. 
org.hibernate.cache.entry This package defines formats for disassembled state kept in the second level cache. 
org.hibernate.cfg This package defines APIs for configuring Hibernate, and classes for building the Hibernate configuration-time metamodel. 
org.hibernate.engine This package contains classes that are "shared" by other packages, and implementations of some key algorithms. 
org.hibernate.impl This package contains implementations of the central Hibernate APIs, especially the Hibernate session. 
org.hibernate.jmx This package exposes a Hibernate instance via JMX. 
 

Uses of Interceptor in org.hibernate
 

Classes in org.hibernate that implement Interceptor
 class EmptyInterceptor
          An interceptor that does nothing.
 

Fields in org.hibernate declared as Interceptor
static Interceptor EmptyInterceptor.INSTANCE
           
 

Methods in org.hibernate with parameters of type Interceptor
 Session SessionFactory.openSession(Interceptor interceptor)
          Create database connection and open a Session on it, specifying an interceptor.
 Session SessionFactory.openSession(Connection connection, Interceptor interceptor)
          Open a Session on the given connection, specifying an interceptor.
 

Uses of Interceptor in org.hibernate.cache.entry
 

Methods in org.hibernate.cache.entry with parameters of type Interceptor
 Object[] CacheEntry.assemble(Object instance, Serializable id, EntityPersister persister, Interceptor interceptor, SessionImplementor session)
           
 

Uses of Interceptor in org.hibernate.cfg
 

Methods in org.hibernate.cfg that return Interceptor
 Interceptor Configuration.getInterceptor()
          Return the configured Interceptor
 

Methods in org.hibernate.cfg with parameters of type Interceptor
 Configuration Configuration.setInterceptor(Interceptor interceptor)
          Configure an Interceptor
 

Uses of Interceptor in org.hibernate.engine
 

Methods in org.hibernate.engine that return Interceptor
 Interceptor SessionImplementor.getInterceptor()
          Retrieves the interceptor currently in use by this event source.
 

Uses of Interceptor in org.hibernate.impl
 

Methods in org.hibernate.impl that return Interceptor
 Interceptor SessionImpl.getInterceptor()
           
 

Methods in org.hibernate.impl with parameters of type Interceptor
 Session SessionFactoryImpl.openSession(Connection connection, Interceptor sessionLocalInterceptor)
           
 Session SessionFactoryImpl.openSession(Interceptor sessionLocalInterceptor)
           
 

Uses of Interceptor in org.hibernate.jmx
 

Methods in org.hibernate.jmx with parameters of type Interceptor
 Session SessionFactoryStub.openSession(Connection connection, Interceptor interceptor)
           
 Session SessionFactoryStub.openSession(Interceptor interceptor)