Uses of Interface
org.hibernate.Session

Packages that use Session
org.hibernate This package defines the central Hibernate APIs. 
org.hibernate.classic This package implements backward-compatibility with Hibernate 2.1 APIs now deprecated in Hibernate3. 
org.hibernate.criterion A framework for defining restriction criteria and order criteria. 
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.type A Hibernate Type is a strategy for mapping a Java property type to a JDBC type or types. 
 

Uses of Session in org.hibernate
 

Methods in org.hibernate that return Session
 Session Session.getSession(EntityMode entityMode)
          Starts a new Session with the given entity mode in effect.
 

Uses of Session in org.hibernate.classic
 

Subinterfaces of Session in org.hibernate.classic
 interface Session
          An extension of the Session API, including all deprecated methods from Hibernate2.
 

Methods in org.hibernate.classic with parameters of type Session
 boolean Lifecycle.onSave(Session s)
          Called when an entity is saved.
 boolean Lifecycle.onUpdate(Session s)
          Called when an entity is passed to Session.update().
 boolean Lifecycle.onDelete(Session s)
          Called when an entity is deleted.
 void Lifecycle.onLoad(Session s, Serializable id)
          Called after an entity is loaded.
 

Uses of Session in org.hibernate.criterion
 

Methods in org.hibernate.criterion with parameters of type Session
 Criteria DetachedCriteria.getExecutableCriteria(Session session)
          Get an executable instance of Criteria, to actually run the query.
 

Uses of Session in org.hibernate.engine
 

Subinterfaces of Session in org.hibernate.engine
 interface SessionImplementor
          Defines the internal contract between the Session and other parts of Hibernate such as implementors of Type or EntityPersister.
 

Uses of Session in org.hibernate.impl
 

Classes in org.hibernate.impl that implement Session
 class SessionImpl
          Concrete implementation of a Session, and also the central, organizing component of Hibernate's internal implementation.
 

Methods in org.hibernate.impl that return Session
 Session SessionImpl.getSession(EntityMode entityMode)
           
 

Uses of Session in org.hibernate.type
 

Methods in org.hibernate.type with parameters of type Session
 void QueryType.ListProxy.setSession(Session session)