Iterator iter = hmap.keySet().iterator();
while (iter.hasNext())
{
String key = (String) iter.next();
RimfaxeHttpSession test_obj = (RimfaxeHttpSession) hmap.get(key);
if (test_obj.hasExpired()) hmap.remove(key);
}
System.out.println("Size of session store : "+hmap.size());
}