当前页面:
在线文档首页 >
Spring Framework 2.0.5 API 文档英文版
SessionHolder (Spring Framework API 2.0) - Spring Framework 2.0.5 API 文档英文版
org.springframework.orm.hibernate3
Class SessionHolder
java.lang.Object
org.springframework.transaction.support.ResourceHolderSupport
org.springframework.orm.hibernate3.SessionHolder
public class SessionHolder
- extends ResourceHolderSupport
Session holder, wrapping a Hibernate Session and a Hibernate Transaction.
HibernateTransactionManager binds instances of this class
to the thread, for a given SessionFactory.
Note: This is an SPI class, not intended to be used by applications.
- Since:
- 1.2
- Author:
- Juergen Hoeller
- See Also:
HibernateTransactionManager
,
SessionFactoryUtils
Methods inherited from class org.springframework.transaction.support.ResourceHolderSupport |
getDeadline, getTimeToLiveInMillis, getTimeToLiveInSeconds, hasTimeout, isOpen, isRollbackOnly, isSynchronizedWithTransaction, released, requested, reset, setRollbackOnly, setSynchronizedWithTransaction, setTimeoutInMillis, setTimeoutInSeconds |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
SessionHolder
public SessionHolder(Session session)
SessionHolder
public SessionHolder(Object key,
Session session)
getSession
public Session getSession()
getSession
public Session getSession(Object key)
getValidatedSession
public Session getValidatedSession()
getValidatedSession
public Session getValidatedSession(Object key)
getAnySession
public Session getAnySession()
addSession
public void addSession(Session session)
addSession
public void addSession(Object key,
Session session)
removeSession
public Session removeSession(Object key)
containsSession
public boolean containsSession(Session session)
isEmpty
public boolean isEmpty()
doesNotHoldNonDefaultSession
public boolean doesNotHoldNonDefaultSession()
setTransaction
public void setTransaction(Transaction transaction)
getTransaction
public Transaction getTransaction()
setPreviousFlushMode
public void setPreviousFlushMode(FlushMode previousFlushMode)
getPreviousFlushMode
public FlushMode getPreviousFlushMode()
clear
public void clear()
- Description copied from class:
ResourceHolderSupport
- Clear the transactional state of this resource holder.
- Overrides:
clear
in class ResourceHolderSupport
Copyright © 2002-2007 The Spring Framework.