return;
}
String sessionId = session.getId();
//Current context
SessionContext currentSessionContext = sessionCtxManager.getSessionContextWithSessionId(sessionId);
//No current context
if (currentSessionContext == null) {
currentSessionContext = newSessionContext(session);
sessionCtxManager.addNewSessionContext(sessionId, currentSessionContext);
}
//Activate
currentSessionContext.setActive(true);
//Set thread local
sessionContext.set(currentSessionContext);
}