Uses of Interface
org.owasp.csrfguard.session.LogicalSession
-
Packages that use LogicalSession Package Description org.owasp.csrfguard org.owasp.csrfguard.token.service org.owasp.csrfguard.token.storage -
-
Uses of LogicalSession in org.owasp.csrfguard
Methods in org.owasp.csrfguard with parameters of type LogicalSession Modifier and Type Method Description voidCsrfGuard. onSessionCreated(LogicalSession logicalSession)Method to be called by a logical session implementation when a new session is created.voidCsrfGuard. onSessionDestroyed(LogicalSession logicalSession)Method to be called by a logical session implementation when a session is destroyed. -
Uses of LogicalSession in org.owasp.csrfguard.token.service
Methods in org.owasp.csrfguard.token.service with parameters of type LogicalSession Modifier and Type Method Description voidTokenService. invalidate(LogicalSession logicalSession)Invalidates the logical session and removes all tokens from the storage -
Uses of LogicalSession in org.owasp.csrfguard.token.storage
Methods in org.owasp.csrfguard.token.storage that return LogicalSession Modifier and Type Method Description LogicalSessionLogicalSessionExtractor. extract(javax.servlet.http.HttpServletRequest httpServletRequest)Returns a logical session implementation based on the information extracted from the current HTTP request or null if that was not possibleLogicalSessionLogicalSessionExtractor. extractOrCreate(javax.servlet.http.HttpServletRequest httpServletRequest)Returns a logical session implementation based on the information extracted from the current HTTP request or creates a new one
-