Uses of Interface
org.hibernate.Interceptor

Packages that use Interceptor
org.hibernate   
org.hibernate.cache.entry   
org.hibernate.cfg   
org.hibernate.engine   
org.hibernate.impl   
org.hibernate.jdbc   
org.hibernate.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(Connection connection, Interceptor interceptor)
          Open a Session on the given connection, specifying an interceptor.
 Session SessionFactory.openSession(Interceptor interceptor)
          Create database connection and open a Session on it, 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, EventSource 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 SessionFactoryImplementor.getInterceptor()
           
 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 SessionFactoryImpl.getInterceptor()
           
 Interceptor SessionImpl.getInterceptor()
           
 Interceptor StatelessSessionImpl.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.jdbc
 

Methods in org.hibernate.jdbc with parameters of type Interceptor
 Batcher BatcherFactory.createBatcher(ConnectionManager connectionManager, Interceptor interceptor)
           
 Batcher BatchingBatcherFactory.createBatcher(ConnectionManager connectionManager, Interceptor interceptor)
           
 Batcher NonBatchingBatcherFactory.createBatcher(ConnectionManager connectionManager, Interceptor interceptor)
           
static JDBCContext JDBCContext.deserialize(ObjectInputStream ois, JDBCContext.Context context, Interceptor interceptor)
          Custom deserialization routine used during deserialization of a Session/PersistenceContext for increased performance.
static ConnectionManager ConnectionManager.deserialize(ObjectInputStream ois, SessionFactoryImplementor factory, Interceptor interceptor, ConnectionReleaseMode connectionReleaseMode, JDBCContext jdbcContext)
           
 

Constructors in org.hibernate.jdbc with parameters of type Interceptor
AbstractBatcher(ConnectionManager connectionManager, Interceptor interceptor)
           
BatchingBatcher(ConnectionManager connectionManager, Interceptor interceptor)
           
ConnectionManager(SessionFactoryImplementor factory, ConnectionManager.Callback callback, ConnectionReleaseMode releaseMode, Connection connection, Interceptor interceptor)
          Constructs a ConnectionManager.
JDBCContext(JDBCContext.Context owner, Connection connection, Interceptor interceptor)
           
NonBatchingBatcher(ConnectionManager connectionManager, Interceptor interceptor)
           
 

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)