Change the session ID of the current session to a new randomly generated session ID. @param session The session to change the session ID for @return The new session ID
(Session session)
| 194 | * @return The new session ID |
| 195 | */ |
| 196 | default String rotateSessionId(Session session) { |
| 197 | String newSessionId = getSessionIdGenerator().generateSessionId(); |
| 198 | changeSessionId(session, newSessionId); |
| 199 | return newSessionId; |
no outgoing calls
no test coverage detected