| Home >> All >> org >> hibernate >> [ impl Javadoc ] |
org.hibernate.impl: Javadoc index of package org.hibernate.impl.
Package Samples:
org.hibernate.impl
Classes:
SessionFactoryImpl: Concrete implementation of the SessionFactory interface. Has the following responsibilites caches configuration settings (immutably) caches "compiled" mappings ie. EntityPersister s and CollectionPersister s (immutable) caches "compiled" queries (memory sensitive cache) manages PreparedStatement s delegates JDBC Connection management to the ConnectionProvider factory for instances of SessionImpl This class must appear immutable to clients, even if it does all kinds of caching and pooling under the covers. It is crucial that the class is not only thread safe, but also highly concurrent. Synchronization ...
SQLQueryImpl: Implements SQL query passthrough. SELECT {person}.NAME AS {person.name}, {person}.AGE AS {person.age}, {person}.SEX AS {person.sex} FROM PERSON {person} WHERE {person}.NAME LIKE 'Hiber%'
SessionImpl: Concrete implementation of a Session, and also the central, organizing component of Hibernate's internal implementation. As such, this class exposes two interfaces; Session itself, to the application, and SessionImplementor, to other components of Hibernate. This class is not threadsafe.
FilterImpl: Implementation of FilterImpl. FilterImpl implements the user's view into enabled dynamic filters, allowing them to set filter parameter values.
IteratorImpl: An implementation of java.util.Iterator that is returned by iterate() query execution methods.
QueryImpl: default implementation of the Query interface, for "ordinary" HQL queries (not collection filters)
FetchingScrollableResultsImpl: Implementation of ScrollableResults which can handle collection fetches.
CollectionFilterImpl: implementation of the Query interface for collection filters
SessionFactoryObjectFactory: Resolves SessionFactory JNDI lookups and deserialization
ScrollableResultsImpl: Implementation of the ScrollableResults interface
AbstractScrollableResults: Implementation of the ScrollableResults interface
AbstractSessionImpl: Functionality common to stateless and stateful sessions
CriteriaImpl: Implementation of the Criteria interface
AbstractQueryImpl: Abstract implementation of the Query interface.
StatelessSessionImpl
| Home | Contact Us | Privacy Policy | Terms of Service |