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,v 1.1 2003/03/05 23:03:21 hlship Exp $
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

public 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

public Serializable loadState(IRequestCycle objCycle)
Method loadState loads the session state
Parameters:
objCycle - the current request cycle
Returns:
Object the loaded sessions state