If i'm not completly wrong there is a Session.get(). You could write a Helper which is casting that session instance. So you could use it everywhere you want.

SessionConverter.java
public static MySession getConverted() {
 return (MySession) Session.get();
}

and in component where you want to access it
MySession s = SessionConverter.getConverted();

Only an idea.
Cheers
Per

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to