store(objSessionState);
}
private void store(Object objSessionState)
{
ISessionStoreManager objHolder = getSessionStoreManager();
if (objHolder == null)
{
Tapestry.fireObservedChange(this, "treeSessionState", objSessionState);
}
else
{
//String strPath = "treeSessionState";
String strPath = getExtendedId();
if (LOG.isDebugEnabled())
LOG.debug("store(): setting state with: " + strPath);
objHolder.setSessionState(this.getPage(), strPath, objSessionState);
}
}