List of usage examples for javax.servlet.http HttpSession toString
public String toString()
From source file:org.structr.web.auth.HttpAuthenticator.java
private static String getSessionId(final HttpServletRequest request) { String existingSessionId = request.getRequestedSessionId(); if (existingSessionId == null) { HttpSession session = request.getSession(true); logger.log(Level.INFO, "Created new HTTP session: {0}", session.toString()); return session.getId(); }/*w w w .j a v a 2 s . c om*/ return existingSessionId; }