Method Summary |
|
public void | activateSession(StatefulSessionEnterpriseContext ctx) Restores session state from the serialized file & invokes
SessionBean.ejbActivate on the target bean. |
public Object | createId(StatefulSessionEnterpriseContext ctx) |
protected void | createService() Setup the session data storage directory. |
public void | createdSession(StatefulSessionEnterpriseContext ctx) Non-operation. |
protected void | destroyService() Purge any data in the store, and then the store directory too. |
public boolean | getPurgeEnabled() Get the stale session state purge enabled flag. |
public File | getStoreDirectory() Returns the directory used to store session passivation state files. |
public String | getStoreDirectoryName() Get the sub-directory name under the server data directory
where session data is stored. |
public void | passivateSession(StatefulSessionEnterpriseContext ctx) Invokes
SessionBean.ejbPassivate on the target bean and saves the
state of the session to a file. |
public void | removePassivated(Object id) Removes the saved state file (if any) for the given session id. |
public void | removeSession(StatefulSessionEnterpriseContext ctx) Invokes
SessionBean.ejbRemove on the target bean. |
public void | setContainer(Container con) Saves a reference to the
StatefulSessionContainer for
its bean type. |
public void | setPurgeEnabled(boolean flag) Set the stale session state purge enabled flag. |
public void | setStoreDirectoryName(String dirName) Set the sub-directory name under the server data directory
where session data will be stored. |