Uses of Interface
org.hibernate.classic.Session

Packages that use Session
org.hibernate This package defines the central Hibernate APIs. 
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.jmx This package exposes a Hibernate instance via JMX. 
 

Uses of Session in org.hibernate
 

Methods in org.hibernate that return Session
 Session SessionFactory.openSession(Connection connection)
          Open a Session on the given connection.
 Session SessionFactory.openSession(Interceptor interceptor)
          Create database connection and open a Session on it, specifying an interceptor.
 Session SessionFactory.openSession(Connection connection, Interceptor interceptor)
          Open a Session on the given connection, specifying an interceptor.
 Session SessionFactory.openSession()
          Create database connection and open a Session on it.
 Session SessionFactory.getCurrentSession()
          Obtains the current session, where "current" is maintained in relation to the current JTA transaction; if a Session is not already associated with the current JTA transaction, a new Session will be opened and it will be associated with that JTA transaction.
 

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 SessionFactoryImpl.openSession(Connection connection, Interceptor sessionLocalInterceptor)
           
 Session SessionFactoryImpl.openSession(Interceptor sessionLocalInterceptor)
           
 Session SessionFactoryImpl.openSession(Connection connection)
           
 Session SessionFactoryImpl.openSession()
           
 Session SessionFactoryImpl.getCurrentSession()
           
 

Uses of Session in org.hibernate.jmx
 

Methods in org.hibernate.jmx that return Session
 Session SessionFactoryStub.openSession(Connection connection, Interceptor interceptor)
           
 Session SessionFactoryStub.openSession(Interceptor interceptor)
           
 Session SessionFactoryStub.openSession()
           
 Session SessionFactoryStub.openSession(Connection conn)
           
 Session SessionFactoryStub.getCurrentSession()