*
* @param objState the table state to store
*/
protected void storeSessionState(Serializable objState)
{
ITableSessionStoreManager objManager = getTableSessionStoreManager();
if (objManager != null)
objManager.saveState(getPage().getRequestCycle(), objState);
else
setSessionState(objState);
}