Uses of Interface
org.hibernate.Interceptor
-
Packages that use Interceptor Package Description org.hibernate org.hibernate.boot This package contains the contracts that make up the Hibernate native bootstrapping API (building a SessionFactory).org.hibernate.boot.internal org.hibernate.boot.spi org.hibernate.cache.spi.entry org.hibernate.cfg org.hibernate.engine.spi org.hibernate.internal org.hibernate.testing.junit4 org.hibernate.testing.orm.junit -
-
Uses of Interceptor in org.hibernate
Classes in org.hibernate that implement Interceptor Modifier and Type Class Description classEmptyInterceptorDeprecated.implementInterceptordirectlyMethods in org.hibernate with parameters of type Interceptor Modifier and Type Method Description TSessionBuilder. interceptor(Interceptor interceptor)Adds a specific interceptor to the session options.TSharedSessionBuilder. interceptor(Interceptor interceptor) -
Uses of Interceptor in org.hibernate.boot
Methods in org.hibernate.boot with parameters of type Interceptor Modifier and Type Method Description SessionFactoryBuilderSessionFactoryBuilder. applyInterceptor(Interceptor interceptor)Specifies anInterceptorassociated with theSessionFactory, which will be used by all sessions unless an interceptor is explicitly specified usingSessionBuilder.interceptor(org.hibernate.Interceptor).Method parameters in org.hibernate.boot with type arguments of type Interceptor Modifier and Type Method Description SessionFactoryBuilderSessionFactoryBuilder. applyStatelessInterceptor(Class<? extends Interceptor> statelessInterceptorClass)Specifies an interceptorClassassociated with theSessionFactory, which is used to instantiate a new interceptor for each session, unless an interceptor is explicitly specified usingSessionBuilder.interceptor(org.hibernate.Interceptor).SessionFactoryBuilderSessionFactoryBuilder. applyStatelessInterceptor(Supplier<? extends Interceptor> statelessInterceptorSupplier)Specifies an interceptorSupplierassociated with theSessionFactory, which is used to obtain an interceptor for each session, unless an interceptor is explicitly specified usingSessionBuilder.interceptor(org.hibernate.Interceptor). -
Uses of Interceptor in org.hibernate.boot.internal
Methods in org.hibernate.boot.internal that return Interceptor Modifier and Type Method Description InterceptorSessionFactoryOptionsBuilder. getInterceptor()Methods in org.hibernate.boot.internal that return types with arguments of type Interceptor Modifier and Type Method Description Supplier<? extends Interceptor>SessionFactoryOptionsBuilder. getStatelessInterceptorImplementorSupplier()Methods in org.hibernate.boot.internal with parameters of type Interceptor Modifier and Type Method Description SessionFactoryBuilderSessionFactoryBuilderImpl. applyInterceptor(Interceptor interceptor)voidSessionFactoryOptionsBuilder. applyInterceptor(Interceptor interceptor)Method parameters in org.hibernate.boot.internal with type arguments of type Interceptor Modifier and Type Method Description SessionFactoryBuilderSessionFactoryBuilderImpl. applyStatelessInterceptor(Class<? extends Interceptor> statelessInterceptorClass)SessionFactoryBuilderSessionFactoryBuilderImpl. applyStatelessInterceptor(Supplier<? extends Interceptor> statelessInterceptorSupplier)voidSessionFactoryOptionsBuilder. applyStatelessInterceptor(Class<? extends Interceptor> statelessInterceptorClass)voidSessionFactoryOptionsBuilder. applyStatelessInterceptorSupplier(Supplier<? extends Interceptor> statelessInterceptorSupplier) -
Uses of Interceptor in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi that return Interceptor Modifier and Type Method Description InterceptorAbstractDelegatingSessionFactoryOptions. getInterceptor()InterceptorSessionFactoryOptions. getInterceptor()Get the interceptor to use by default for all sessions opened from this factory.Methods in org.hibernate.boot.spi that return types with arguments of type Interceptor Modifier and Type Method Description Supplier<? extends Interceptor>AbstractDelegatingSessionFactoryOptions. getStatelessInterceptorImplementorSupplier()Supplier<? extends Interceptor>SessionFactoryOptions. getStatelessInterceptorImplementorSupplier()Get the interceptor to use by default for all sessions opened from this factory.Methods in org.hibernate.boot.spi with parameters of type Interceptor Modifier and Type Method Description TAbstractDelegatingSessionFactoryBuilder. applyInterceptor(Interceptor interceptor)Method parameters in org.hibernate.boot.spi with type arguments of type Interceptor Modifier and Type Method Description TAbstractDelegatingSessionFactoryBuilder. applyStatelessInterceptor(Class<? extends Interceptor> statelessInterceptorClass)TAbstractDelegatingSessionFactoryBuilder. applyStatelessInterceptor(Supplier<? extends Interceptor> statelessInterceptorSupplier) -
Uses of Interceptor in org.hibernate.cache.spi.entry
Methods in org.hibernate.cache.spi.entry with parameters of type Interceptor Modifier and Type Method Description Object[]StandardCacheEntryImpl. assemble(Object instance, Object id, EntityPersister persister, Interceptor interceptor, EventSource session)Assemble the previously disassembled state represented by this entry into the given entity instance. -
Uses of Interceptor in org.hibernate.cfg
Methods in org.hibernate.cfg that return Interceptor Modifier and Type Method Description InterceptorConfiguration. getInterceptor()Retrieve the configuredInterceptor.Methods in org.hibernate.cfg with parameters of type Interceptor Modifier and Type Method Description ConfigurationConfiguration. setInterceptor(Interceptor interceptor)Set the currentInterceptor. -
Uses of Interceptor in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return Interceptor Modifier and Type Method Description InterceptorSessionDelegatorBaseImpl. getInterceptor()InterceptorSharedSessionContractImplementor. getInterceptor()Retrieves the interceptor currently in use by this event source.Methods in org.hibernate.engine.spi with parameters of type Interceptor Modifier and Type Method Description TAbstractDelegatingSessionBuilder. interceptor(Interceptor interceptor)TAbstractDelegatingSharedSessionBuilder. interceptor(Interceptor interceptor) -
Uses of Interceptor in org.hibernate.internal
Classes in org.hibernate.internal that implement Interceptor Modifier and Type Class Description classEmptyInterceptorAn interceptor that does nothing.Fields in org.hibernate.internal declared as Interceptor Modifier and Type Field Description static InterceptorEmptyInterceptor. INSTANCEMethods in org.hibernate.internal that return Interceptor Modifier and Type Method Description static InterceptorSessionFactoryImpl. configuredInterceptor(Interceptor interceptor, boolean explicitNoInterceptor, SessionFactoryOptions options)static InterceptorSessionFactoryImpl. configuredInterceptor(Interceptor interceptor, SessionFactoryOptions options)InterceptorAbstractSharedSessionContract. getInterceptor()InterceptorSessionCreationOptions. getInterceptor()InterceptorSessionFactoryImpl. getInterceptor()InterceptorSessionFactoryImpl.SessionBuilderImpl. getInterceptor()InterceptorSessionFactoryImpl.StatelessSessionBuilderImpl. getInterceptor()Methods in org.hibernate.internal with parameters of type Interceptor Modifier and Type Method Description static InterceptorSessionFactoryImpl. configuredInterceptor(Interceptor interceptor, boolean explicitNoInterceptor, SessionFactoryOptions options)static InterceptorSessionFactoryImpl. configuredInterceptor(Interceptor interceptor, SessionFactoryOptions options)TSessionFactoryImpl.SessionBuilderImpl. interceptor(Interceptor interceptor)Constructors in org.hibernate.internal with parameters of type Interceptor Constructor Description CoordinatingEntityNameResolver(SessionFactoryImplementor sessionFactory, Interceptor interceptor) -
Uses of Interceptor in org.hibernate.testing.junit4
Methods in org.hibernate.testing.junit4 with parameters of type Interceptor Modifier and Type Method Description protected SessionBaseCoreFunctionalTestCase. openSession(Interceptor interceptor)protected SessionBaseNonConfigCoreFunctionalTestCase. openSession(Interceptor interceptor) -
Uses of Interceptor in org.hibernate.testing.orm.junit
Methods in org.hibernate.testing.orm.junit that return types with arguments of type Interceptor Modifier and Type Method Description Class<? extends Interceptor>interceptorClass()
-