Package com.sun.ejb.spi.container
Interface StatefulEJBContext
-
- All Known Implementing Classes:
SessionContextImpl
public interface StatefulEJBContext- Author:
- Mahesh Kannan
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancanBePassivated()booleanexistsInStore()longgetLastAccessTime()jakarta.ejb.SessionContextgetSessionContext()longgetVersion()longincrementAndGetVersion()voidsetExistsInStore(boolean val)voidsetVersion(long versionInBackingStore)
-
-
-
Method Detail
-
getLastAccessTime
long getLastAccessTime()
-
canBePassivated
boolean canBePassivated()
-
getSessionContext
jakarta.ejb.SessionContext getSessionContext()
-
existsInStore
boolean existsInStore()
-
setExistsInStore
void setExistsInStore(boolean val)
-
getVersion
long getVersion()
-
incrementAndGetVersion
long incrementAndGetVersion()
-
setVersion
void setVersion(long versionInBackingStore)
-
-