Currently I have a session scoped object called MySessionData. Originally when logging out I just called
getThreadLocalRequest().getSession().invalidate();
The problem is now we have multiple session scoped objects and logging out only really requires the ony (MySessionData) be cleared. Does anybody know of a way to clear a single Session scoped object in Guice. If this were using traditional session objects I would just set the key value pair to null in the session map.