public interface ElevatedSecurityGuard extends Initable
| Modifier and Type | Method and Description |
|---|---|
void |
onFailedLoginAttempt(javax.servlet.http.HttpServletRequest httpServletRequest,
String userName)
This is called when a user fails a login check, either because they failed the elevated security check or they
failed the more basic username and password check.
|
void |
onSuccessfulLoginAttempt(javax.servlet.http.HttpServletRequest httpServletRequest,
String userName)
This is called when a user passes a login check.
|
boolean |
performElevatedSecurityCheck(javax.servlet.http.HttpServletRequest httpServletRequest,
String userName)
This will be called to perform an elevated security check for a given user name.
|
boolean performElevatedSecurityCheck(javax.servlet.http.HttpServletRequest httpServletRequest,
String userName)
httpServletRequest - the HTTP request in playuserName - the name of the user to get login information aboutvoid onFailedLoginAttempt(javax.servlet.http.HttpServletRequest httpServletRequest,
String userName)
The username MAY be null if a valid username cannot be found for example
httpServletRequest - the HTTP request in playuserName - the name of the user to get login information aboutvoid onSuccessfulLoginAttempt(javax.servlet.http.HttpServletRequest httpServletRequest,
String userName)
The username MAY be null if a valid username cannot be found for example
httpServletRequest - the HTTP request in playuserName - the name of the user to get login information aboutCopyright © 2018 Atlassian. All rights reserved.