protected static class StateContext
{
protected HandlerContext handlerContext;
protected Session session;
public StateContext(HandlerContext context, Session ses)
{
this.handlerContext = context;
this.session = ses;
}
public HandlerContext getHandlerContext()
{
return handlerContext;
}
public Session getSession()
{
return session;
}
}