*
* @return the stored table state
*/
protected Serializable loadSessionState()
{
ITableSessionStoreManager objManager = getTableSessionStoreManager();
if (objManager != null)
return objManager.loadState(getPage().getRequestCycle());
String strPersist = getPersist();
if (strPersist.equals("client") || strPersist.equals("client:page"))
return getClientState();
else if (strPersist.equals("client:app"))
return getClientAppState();