* Private constructor.
*/
public SessionRegistryImpl()
{
// Initialize session context map with a timeout of 10 x one hour.
contextMap = new ExpirationHashtable(0);
// Add a disposal listener for the hashtable.
contextMap.setDisposalListener(this);
}