Hibernate API
This documentation concentrates upon the following Core API interfaces:
net.sf.hibernate.Hibernate
net.sf.hibernate.Session
net.sf.hibernate.SessionFactory
net.sf.hibernate.Transaction
net.sf.hibernate.Query
net.sf.hibernate.Criteria
net.sf.hibernate.ScrollableResults
net.sf.hibernate.cfg.Configuration
net.sf.hibernate.expression.Expression
net.sf.hibernate.expression.Order
net.sf.hibernate.expression.Example
These interfaces are fully intended to be exposed to application code.
The Extension API is intended to be used by application programmers
to extend Hibernate functionality. None of these interfaces are intended
to be called by the application - they are called internally by Hibernate.
This API is less stable than the Core API. The safest way to extend
functionality is to contribute extensions back to the project; that way
extensions will be updated when the Extension API changes.
Full Hibernate documentation may be found at
hibernate.org.
@see net.sf.hibernate.Hibernate
@see net.sf.hibernate.Session
@see net.sf.hibernate.SessionFactory
@see net.sf.hibernate.Transaction
@see net.sf.hibernate.Query
@see net.sf.hibernate.Criteria
@see net.sf.hibernate.ScrollableResults
@see net.sf.hibernate.cfg.Configuration
@see net.sf.hibernate.expression.Expression
@see net.sf.hibernate.expression.Order
@see net.sf.hibernate.expression.Example