org.apache.tapestry.contrib.table.model
Interface ITableSessionStoreManager


public interface ITableSessionStoreManager

An interface responsible for determining where the session state will be saved between requests.

Version:
$Id: ITableSessionStoreManager.java 243791 2004-02-19 17:38:13Z hlship $
Author:
mindbridge

Method Summary
 Serializable loadState(IRequestCycle objCycle)
          Method loadState loads the session state
 void saveState(IRequestCycle objCycle, Serializable objState)
          Method saveState saves the session sate
 

Method Detail

saveState

void saveState(IRequestCycle objCycle,
               Serializable objState)
Method saveState saves the session sate

Parameters:
objCycle - the current request cycle
objState - the session state to be saved

loadState

Serializable loadState(IRequestCycle objCycle)
Method loadState loads the session state

Parameters:
objCycle - the current request cycle
Returns:
Object the loaded sessions state