|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.hibernate.impl.AbstractSessionImpl org.hibernate.impl.StatelessSessionImpl
public class StatelessSessionImpl
Field Summary |
---|
Fields inherited from class org.hibernate.impl.AbstractSessionImpl |
---|
factory |
Method Summary | |
---|---|
void |
afterOperation(boolean success)
|
void |
afterScrollOperation()
|
void |
afterTransactionBegin(Transaction tx)
We cannot rely upon this method being called! It is only called if we are using Hibernate Transaction API. |
void |
afterTransactionCompletion(boolean successful,
Transaction tx)
Notify the session that the transaction completed, so we no longer own the old locks. |
protected boolean |
autoFlushIfRequired(Set querySpaces)
|
void |
beforeTransactionCompletion(Transaction tx)
Notify the session that the transaction is about to complete |
Transaction |
beginTransaction()
Begin a Hibernate transaction. |
String |
bestGuessEntityName(Object object)
The best guess entity name for an entity not in an association |
void |
close()
Close the stateless session and release the JDBC connection. |
Connection |
connection()
Returns the current JDBC connection associated with this instance. If the session is using aggressive connection release (as in a CMT environment), it is the application's responsibility to close the connection returned by this call. |
Criteria |
createCriteria(Class persistentClass)
Create a new Criteria instance, for the given entity class, or a superclass of an entity class. |
Criteria |
createCriteria(Class persistentClass,
String alias)
Create a new Criteria instance, for the given entity class, or a superclass of an entity class, with the given alias. |
Criteria |
createCriteria(String entityName)
Create a new Criteria instance, for the given entity name. |
Criteria |
createCriteria(String entityName,
String alias)
Create a new Criteria instance, for the given entity name, with the given alias. |
void |
delete(Object entity)
Delete a row. |
void |
delete(String entityName,
Object entity)
Delete a row. |
int |
executeNativeUpdate(NativeSQLQuerySpecification nativeSQLQuerySpecification,
QueryParameters queryParameters)
Execute a native SQL update or delete query |
int |
executeUpdate(String query,
QueryParameters queryParameters)
Execute a HQL update or delete query |
void |
flush()
|
Object |
get(Class entityClass,
Serializable id)
Retrieve a row. |
Object |
get(Class entityClass,
Serializable id,
LockMode lockMode)
Retrieve a row, obtaining the specified lock mode. |
Object |
get(String entityName,
Serializable id)
Retrieve a row. |
Object |
get(String entityName,
Serializable id,
LockMode lockMode)
Retrieve a row, obtaining the specified lock mode. |
Batcher |
getBatcher()
Get the prepared statement Batcher for this session |
CacheMode |
getCacheMode()
|
ConnectionReleaseMode |
getConnectionReleaseMode()
|
Serializable |
getContextEntityIdentifier(Object object)
Return the identifier of the persistent object, or null if not associated with the session |
int |
getDontFlushFromFind()
|
Map |
getEnabledFilters()
Return the currently enabled filters. |
EntityMode |
getEntityMode()
|
EntityPersister |
getEntityPersister(String entityName,
Object object)
Get the EntityPersister for any instance |
Object |
getEntityUsingInterceptor(EntityKey key)
Get the entity instance associated with the given Key, calling the Interceptor if necessary |
String |
getFetchProfile()
|
Type |
getFilterParameterType(String filterParameterName)
Retreive the type for a given filter parrameter. |
Object |
getFilterParameterValue(String filterParameterName)
Retreive the currently set value for a filter parameter. |
FlushMode |
getFlushMode()
|
Interceptor |
getInterceptor()
Retrieves the interceptor currently in use by this event source. |
JDBCContext |
getJDBCContext()
|
EventListeners |
getListeners()
Retrieves the configured event listeners from this event source. |
PersistenceContext |
getPersistenceContext()
Get the persistence context for this session |
long |
getTimestamp()
System time before the start of the transaction |
Transaction |
getTransaction()
Get the current Hibernate transaction. |
String |
guessEntityName(Object entity)
The guessed entity name for an entity not in an association |
Object |
immediateLoad(String entityName,
Serializable id)
Load an instance immediately. |
void |
initializeCollection(PersistentCollection collection,
boolean writing)
Initialize the collection (if not already initialized) |
Serializable |
insert(Object entity)
Insert a row. |
Serializable |
insert(String entityName,
Object entity)
Insert a row. |
Object |
instantiate(String entityName,
Serializable id)
Instantiate the entity class, initializing with the given identifier |
Object |
internalLoad(String entityName,
Serializable id,
boolean eager,
boolean nullable)
Load an instance without checking if it was deleted. |
boolean |
isAutoCloseSessionEnabled()
|
boolean |
isConnected()
|
boolean |
isEventSource()
|
boolean |
isFlushBeforeCompletionEnabled()
|
boolean |
isFlushModeNever()
|
boolean |
isOpen()
|
boolean |
isTransactionInProgress()
Does this Session have an active Hibernate transaction or is there a JTA transaction in progress? |
Iterator |
iterate(String query,
QueryParameters queryParameters)
Execute an iterate() query |
Iterator |
iterateFilter(Object collection,
String filter,
QueryParameters queryParameters)
Iterate a filter |
List |
list(CriteriaImpl criteria)
Execute a criteria query |
List |
list(String query,
QueryParameters queryParameters)
Execute a find() query |
List |
listCustomQuery(CustomQuery customQuery,
QueryParameters queryParameters)
Execute an SQL Query |
List |
listFilter(Object collection,
String filter,
QueryParameters queryParameters)
Execute a filter |
void |
managedClose()
|
void |
managedFlush()
|
void |
refresh(Object entity)
Refresh the entity instance state from the database. |
void |
refresh(Object entity,
LockMode lockMode)
Refresh the entity instance state from the database. |
void |
refresh(String entityName,
Object entity)
Refresh the entity instance state from the database. |
void |
refresh(String entityName,
Object entity,
LockMode lockMode)
Refresh the entity instance state from the database. |
ScrollableResults |
scroll(CriteriaImpl criteria,
ScrollMode scrollMode)
Execute a criteria query |
ScrollableResults |
scroll(String query,
QueryParameters queryParameters)
Execute a scroll() query |
ScrollableResults |
scrollCustomQuery(CustomQuery customQuery,
QueryParameters queryParameters)
Execute an SQL Query |
void |
setAutoClear(boolean enabled)
Enable/disable automatic cache clearing from after transaction completion (for EJB3) |
void |
setCacheMode(CacheMode cm)
|
void |
setFetchProfile(String name)
|
void |
setFlushMode(FlushMode fm)
|
boolean |
shouldAutoClose()
|
void |
update(Object entity)
Update a row. |
void |
update(String entityName,
Object entity)
Update a row. |
Methods inherited from class org.hibernate.impl.AbstractSessionImpl |
---|
createQuery, createSQLQuery, errorIfClosed, getFactory, getHQLQueryPlan, getNamedQuery, getNamedSQLQuery, getNativeSQLQueryPlan, isClosed, list, scroll, setClosed |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface org.hibernate.transaction.TransactionFactory.Context |
---|
getFactory, isClosed |
Methods inherited from interface org.hibernate.StatelessSession |
---|
createQuery, createSQLQuery, getNamedQuery |
Method Detail |
---|
public Serializable insert(Object entity)
StatelessSession
insert
in interface StatelessSession
entity
- a new transient instancepublic Serializable insert(String entityName, Object entity)
StatelessSession
insert
in interface StatelessSession
entityName
- The entityName for the entity to be insertedentity
- a new transient instance
public void delete(Object entity)
StatelessSession
delete
in interface StatelessSession
entity
- a detached entity instancepublic void delete(String entityName, Object entity)
StatelessSession
delete
in interface StatelessSession
entityName
- The entityName for the entity to be deletedentity
- a detached entity instancepublic void update(Object entity)
StatelessSession
update
in interface StatelessSession
entity
- a detached entity instancepublic void update(String entityName, Object entity)
StatelessSession
update
in interface StatelessSession
entityName
- The entityName for the entity to be updatedentity
- a detached entity instancepublic Object get(Class entityClass, Serializable id)
StatelessSession
get
in interface StatelessSession
public Object get(Class entityClass, Serializable id, LockMode lockMode)
StatelessSession
get
in interface StatelessSession
public Object get(String entityName, Serializable id)
StatelessSession
get
in interface StatelessSession
public Object get(String entityName, Serializable id, LockMode lockMode)
StatelessSession
get
in interface StatelessSession
public void refresh(Object entity)
StatelessSession
refresh
in interface StatelessSession
entity
- The entity to be refreshed.public void refresh(String entityName, Object entity)
StatelessSession
refresh
in interface StatelessSession
entityName
- The entityName for the entity to be refreshed.entity
- The entity to be refreshed.public void refresh(Object entity, LockMode lockMode)
StatelessSession
refresh
in interface StatelessSession
entity
- The entity to be refreshed.lockMode
- The LockMode to be applied.public void refresh(String entityName, Object entity, LockMode lockMode)
StatelessSession
refresh
in interface StatelessSession
entityName
- The entityName for the entity to be refreshed.entity
- The entity to be refreshed.lockMode
- The LockMode to be applied.public Object immediateLoad(String entityName, Serializable id) throws HibernateException
SessionImplementor
immediateLoad
in interface SessionImplementor
HibernateException
public void initializeCollection(PersistentCollection collection, boolean writing) throws HibernateException
SessionImplementor
initializeCollection
in interface SessionImplementor
HibernateException
public Object instantiate(String entityName, Serializable id) throws HibernateException
SessionImplementor
instantiate
in interface SessionImplementor
HibernateException
public Object internalLoad(String entityName, Serializable id, boolean eager, boolean nullable) throws HibernateException
SessionImplementor
internalLoad
in interface SessionImplementor
HibernateException
public Iterator iterate(String query, QueryParameters queryParameters) throws HibernateException
SessionImplementor
iterate
in interface SessionImplementor
HibernateException
public Iterator iterateFilter(Object collection, String filter, QueryParameters queryParameters) throws HibernateException
SessionImplementor
iterateFilter
in interface SessionImplementor
HibernateException
public List listFilter(Object collection, String filter, QueryParameters queryParameters) throws HibernateException
SessionImplementor
listFilter
in interface SessionImplementor
HibernateException
public boolean isOpen()
isOpen
in interface SessionImplementor
public void close()
StatelessSession
close
in interface StatelessSession
public ConnectionReleaseMode getConnectionReleaseMode()
getConnectionReleaseMode
in interface JDBCContext.Context
public boolean isAutoCloseSessionEnabled()
isAutoCloseSessionEnabled
in interface JDBCContext.Context
public boolean isFlushBeforeCompletionEnabled()
isFlushBeforeCompletionEnabled
in interface TransactionFactory.Context
public boolean isFlushModeNever()
isFlushModeNever
in interface TransactionFactory.Context
public void managedClose()
managedClose
in interface TransactionFactory.Context
public void managedFlush()
managedFlush
in interface TransactionFactory.Context
public boolean shouldAutoClose()
shouldAutoClose
in interface TransactionFactory.Context
public void afterTransactionCompletion(boolean successful, Transaction tx)
SessionImplementor
afterTransactionCompletion
in interface SessionImplementor
afterTransactionCompletion
in interface JDBCContext.Context
public void beforeTransactionCompletion(Transaction tx)
SessionImplementor
beforeTransactionCompletion
in interface SessionImplementor
beforeTransactionCompletion
in interface JDBCContext.Context
public String bestGuessEntityName(Object object)
SessionImplementor
bestGuessEntityName
in interface SessionImplementor
public Connection connection()
StatelessSession
connection
in interface SessionImplementor
connection
in interface StatelessSession
public int executeUpdate(String query, QueryParameters queryParameters) throws HibernateException
SessionImplementor
executeUpdate
in interface SessionImplementor
HibernateException
public Batcher getBatcher()
SessionImplementor
getBatcher
in interface SessionImplementor
public CacheMode getCacheMode()
getCacheMode
in interface SessionImplementor
public int getDontFlushFromFind()
getDontFlushFromFind
in interface SessionImplementor
public Map getEnabledFilters()
SessionImplementor
FilterImpl
instance.
getEnabledFilters
in interface SessionImplementor
public Serializable getContextEntityIdentifier(Object object)
SessionImplementor
getContextEntityIdentifier
in interface SessionImplementor
public EntityMode getEntityMode()
getEntityMode
in interface SessionImplementor
public EntityPersister getEntityPersister(String entityName, Object object) throws HibernateException
SessionImplementor
getEntityPersister
in interface SessionImplementor
entityName
- optional entity nameobject
- the entity instance
HibernateException
public Object getEntityUsingInterceptor(EntityKey key) throws HibernateException
SessionImplementor
getEntityUsingInterceptor
in interface SessionImplementor
HibernateException
public Type getFilterParameterType(String filterParameterName)
SessionImplementor
getFilterParameterType
in interface SessionImplementor
filterParameterName
- The filter parameter name in the format
{FILTER_NAME.PARAMETER_NAME}.public Object getFilterParameterValue(String filterParameterName)
SessionImplementor
getFilterParameterValue
in interface SessionImplementor
filterParameterName
- The filter parameter name in the format
{FILTER_NAME.PARAMETER_NAME}.
public FlushMode getFlushMode()
getFlushMode
in interface SessionImplementor
public Interceptor getInterceptor()
SessionImplementor
getInterceptor
in interface SessionImplementor
public EventListeners getListeners()
SessionImplementor
getListeners
in interface SessionImplementor
public PersistenceContext getPersistenceContext()
SessionImplementor
getPersistenceContext
in interface SessionImplementor
public long getTimestamp()
SessionImplementor
getTimestamp
in interface SessionImplementor
public String guessEntityName(Object entity) throws HibernateException
SessionImplementor
guessEntityName
in interface SessionImplementor
HibernateException
public boolean isConnected()
isConnected
in interface SessionImplementor
public boolean isTransactionInProgress()
SessionImplementor
isTransactionInProgress
in interface SessionImplementor
public void setAutoClear(boolean enabled)
SessionImplementor
setAutoClear
in interface SessionImplementor
public void setCacheMode(CacheMode cm)
setCacheMode
in interface SessionImplementor
public void setFlushMode(FlushMode fm)
setFlushMode
in interface SessionImplementor
public Transaction getTransaction() throws HibernateException
StatelessSession
getTransaction
in interface StatelessSession
HibernateException
public Transaction beginTransaction() throws HibernateException
StatelessSession
beginTransaction
in interface StatelessSession
HibernateException
public boolean isEventSource()
isEventSource
in interface SessionImplementor
public List list(String query, QueryParameters queryParameters) throws HibernateException
SessionImplementor
list
in interface SessionImplementor
HibernateException
public void afterOperation(boolean success)
public Criteria createCriteria(Class persistentClass, String alias)
StatelessSession
createCriteria
in interface StatelessSession
persistentClass
- a class, which is persistent, or has persistent subclasses
public Criteria createCriteria(String entityName, String alias)
StatelessSession
createCriteria
in interface StatelessSession
public Criteria createCriteria(Class persistentClass)
StatelessSession
createCriteria
in interface StatelessSession
persistentClass
- a class, which is persistent, or has persistent subclasses
public Criteria createCriteria(String entityName)
StatelessSession
createCriteria
in interface StatelessSession
public ScrollableResults scroll(CriteriaImpl criteria, ScrollMode scrollMode)
SessionImplementor
scroll
in interface SessionImplementor
public List list(CriteriaImpl criteria) throws HibernateException
SessionImplementor
list
in interface SessionImplementor
HibernateException
public List listCustomQuery(CustomQuery customQuery, QueryParameters queryParameters) throws HibernateException
SessionImplementor
listCustomQuery
in interface SessionImplementor
HibernateException
public ScrollableResults scrollCustomQuery(CustomQuery customQuery, QueryParameters queryParameters) throws HibernateException
SessionImplementor
scrollCustomQuery
in interface SessionImplementor
HibernateException
public ScrollableResults scroll(String query, QueryParameters queryParameters) throws HibernateException
SessionImplementor
scroll
in interface SessionImplementor
HibernateException
public void afterScrollOperation()
afterScrollOperation
in interface SessionImplementor
public void flush()
flush
in interface SessionImplementor
public String getFetchProfile()
getFetchProfile
in interface SessionImplementor
public JDBCContext getJDBCContext()
getJDBCContext
in interface SessionImplementor
public void setFetchProfile(String name)
setFetchProfile
in interface SessionImplementor
public void afterTransactionBegin(Transaction tx)
JDBCContext.Context
afterTransactionBegin
in interface JDBCContext.Context
protected boolean autoFlushIfRequired(Set querySpaces) throws HibernateException
HibernateException
public int executeNativeUpdate(NativeSQLQuerySpecification nativeSQLQuerySpecification, QueryParameters queryParameters) throws HibernateException
SessionImplementor
executeNativeUpdate
in interface SessionImplementor
HibernateException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |