6869707172737475
* Grabs the username from the session. Whatever you do, don't try to keep * a copy of the session locally. That would be a bad idea. */ @Override public void init(WOSession session) { Session s = (Session) session; username = s.username(); }