Uses of Interface
org.hibernate.SessionFactoryObserver
-
Packages that use SessionFactoryObserver Package Description org.hibernate.boot This package contains the interfaces that make up the bootstrap API for Hibernate.org.hibernate.boot.internal org.hibernate.boot.spi A range of SPIs allowing integration with—and customization of—the process of building metadata.org.hibernate.bytecode.internal org.hibernate.cfg This package defines APIs for configuring Hibernate.org.hibernate.engine.spi This package defines some central internal SPI abstractions used throughout the implementation of Hibernate.org.hibernate.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate
.org.hibernate.type.spi Defines a registry for HibernateType
s. -
-
Uses of SessionFactoryObserver in org.hibernate.boot
Methods in org.hibernate.boot with parameters of type SessionFactoryObserver Modifier and Type Method Description SessionFactoryBuilder
SessionFactoryBuilder. addSessionFactoryObservers(SessionFactoryObserver... observers)
Specifies one or more observers. -
Uses of SessionFactoryObserver in org.hibernate.boot.internal
Methods in org.hibernate.boot.internal that return SessionFactoryObserver Modifier and Type Method Description SessionFactoryObserver[]
SessionFactoryOptionsBuilder. getSessionFactoryObservers()
Methods in org.hibernate.boot.internal with parameters of type SessionFactoryObserver Modifier and Type Method Description SessionFactoryBuilder
SessionFactoryBuilderImpl. addSessionFactoryObservers(SessionFactoryObserver... observers)
void
SessionFactoryOptionsBuilder. addSessionFactoryObservers(SessionFactoryObserver... observers)
-
Uses of SessionFactoryObserver in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi that return SessionFactoryObserver Modifier and Type Method Description SessionFactoryObserver[]
AbstractDelegatingSessionFactoryOptions. getSessionFactoryObservers()
SessionFactoryObserver[]
SessionFactoryOptions. getSessionFactoryObservers()
Methods in org.hibernate.boot.spi with parameters of type SessionFactoryObserver Modifier and Type Method Description T
AbstractDelegatingSessionFactoryBuilder. addSessionFactoryObservers(SessionFactoryObserver... observers)
-
Uses of SessionFactoryObserver in org.hibernate.bytecode.internal
Classes in org.hibernate.bytecode.internal that implement SessionFactoryObserver Modifier and Type Class Description class
SessionFactoryObserverForBytecodeEnhancer
-
Uses of SessionFactoryObserver in org.hibernate.cfg
Methods in org.hibernate.cfg that return SessionFactoryObserver Modifier and Type Method Description SessionFactoryObserver
Configuration. getSessionFactoryObserver()
TheSessionFactoryObserver
, if any, that was added to this configuration.Methods in org.hibernate.cfg with parameters of type SessionFactoryObserver Modifier and Type Method Description Configuration
Configuration. setSessionFactoryObserver(SessionFactoryObserver sessionFactoryObserver)
Specify aSessionFactoryObserver
to be added to this configuration. -
Uses of SessionFactoryObserver in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi with parameters of type SessionFactoryObserver Modifier and Type Method Description void
SessionFactoryDelegatingImpl. addObserver(SessionFactoryObserver observer)
void
SessionFactoryImplementor. addObserver(SessionFactoryObserver observer)
-
Uses of SessionFactoryObserver in org.hibernate.internal
Classes in org.hibernate.internal that implement SessionFactoryObserver Modifier and Type Class Description class
SessionFactoryObserverChain
Methods in org.hibernate.internal with parameters of type SessionFactoryObserver Modifier and Type Method Description void
SessionFactoryImpl. addObserver(SessionFactoryObserver observer)
void
SessionFactoryObserverChain. addObserver(SessionFactoryObserver observer)
-
Uses of SessionFactoryObserver in org.hibernate.type.spi
Classes in org.hibernate.type.spi that implement SessionFactoryObserver Modifier and Type Class Description class
TypeConfiguration
Each instance defines a set of types available in a given persistence unit, and isolates them from other configurations.
-