Uses of Interface
org.hibernate.Session
-
Packages that use Session Package Description org.hibernate org.hibernate.classic org.hibernate.context.spi SPI level contracts around "current session" support.org.hibernate.criterion org.hibernate.engine.spi org.hibernate.event.spi org.hibernate.jpa org.hibernate.procedure org.hibernate.tuple -
-
Uses of Session in org.hibernate
Methods in org.hibernate that return Session Modifier and Type Method Description SessionSessionFactory. getCurrentSession()Obtains the current session.SessionSessionBuilder. openSession()Opens a session with the specified options.SessionSessionFactory. openSession()Open aSession.Methods in org.hibernate with parameters of type Session Modifier and Type Method Description booleanCustomEntityDirtinessStrategy. canDirtyCheck(java.lang.Object entity, EntityPersister persister, Session session)Is this strategy capable of telling whether the given entity is dirty? A return oftruemeans thatCustomEntityDirtinessStrategy.isDirty(java.lang.Object, org.hibernate.persister.entity.EntityPersister, org.hibernate.Session)will be called next as the definitive means to determine whether the entity is dirty.voidCustomEntityDirtinessStrategy. findDirty(java.lang.Object entity, EntityPersister persister, Session session, CustomEntityDirtinessStrategy.DirtyCheckContext dirtyCheckContext)Callback used to hook into Hibernate algorithm for determination of which attributes have changed.static LobCreatorHibernate. getLobCreator(Session session)Obtain a lob creator for the given session.booleanCustomEntityDirtinessStrategy. isDirty(java.lang.Object entity, EntityPersister persister, Session session)The callback used by Hibernate to determine if the given entity is dirty.voidCustomEntityDirtinessStrategy. resetDirty(java.lang.Object entity, EntityPersister persister, Session session)Callback used by Hibernate to signal that the entity dirty flag should be cleared. -
Uses of Session in org.hibernate.classic
Methods in org.hibernate.classic with parameters of type Session Modifier and Type Method Description booleanLifecycle. onDelete(Session s)Called when an entity is deleted.voidLifecycle. onLoad(Session s, java.io.Serializable id)Called after an entity is loaded.booleanLifecycle. onSave(Session s)Called when an entity is saved.booleanLifecycle. onUpdate(Session s)Called when an entity is passed to Session.update(). -
Uses of Session in org.hibernate.context.spi
Methods in org.hibernate.context.spi that return Session Modifier and Type Method Description SessionCurrentSessionContext. currentSession()Retrieve the current session according to the scoping defined by this implementation.Methods in org.hibernate.context.spi with parameters of type Session Modifier and Type Method Description protected voidAbstractCurrentSessionContext. validateExistingSession(Session existingSession) -
Uses of Session in org.hibernate.criterion
Methods in org.hibernate.criterion with parameters of type Session Modifier and Type Method Description CriteriaDetachedCriteria. getExecutableCriteria(Session session)Get an executable instance of Criteria to actually run the query. -
Uses of Session in org.hibernate.engine.spi
Subinterfaces of Session in org.hibernate.engine.spi Modifier and Type Interface Description interfaceSessionImplementorDefines the "internal contract" forSessionand other parts of Hibernate such asType,EntityPersisterandCollectionPersisterimplementations.Classes in org.hibernate.engine.spi that implement Session Modifier and Type Class Description classSessionDelegatorBaseImplThis class is meant to be extended.Methods in org.hibernate.engine.spi that return Session Modifier and Type Method Description SessionSessionFactoryDelegatingImpl. getCurrentSession()SessionAbstractDelegatingSessionBuilder. openSession()SessionAbstractDelegatingSharedSessionBuilder. openSession()SessionSessionFactoryDelegatingImpl. openSession()SessionSessionFactoryDelegatingImpl. openTemporarySession()SessionSessionFactoryImplementor. openTemporarySession()Get a non-transactional "current" session (used by hibernate-envers)Constructors in org.hibernate.engine.spi with parameters of type Session Constructor Description SessionDelegatorBaseImpl(SessionImplementor delegate, Session session)Deprecated.(since 5.3) SessionDelegatorBaseImpl should take just one argument, the SessionImplementor. -
Uses of Session in org.hibernate.event.spi
Subinterfaces of Session in org.hibernate.event.spi Modifier and Type Interface Description interfaceEventSource -
Uses of Session in org.hibernate.jpa
Methods in org.hibernate.jpa that return Session Modifier and Type Method Description SessionHibernateEntityManager. getSession()Deprecated.Retrieve a reference to the HibernateSessionused by thisEntityManager. -
Uses of Session in org.hibernate.procedure
Methods in org.hibernate.procedure with parameters of type Session Modifier and Type Method Description default ProcedureCallProcedureCallMemento. makeProcedureCall(Session session)Convert the memento back into an executable (connected) form. -
Uses of Session in org.hibernate.tuple
Methods in org.hibernate.tuple with parameters of type Session Modifier and Type Method Description TValueGenerator. generateValue(Session session, java.lang.Object owner)Generate the value.
-