Interface ShibbolethLoginHandler
public interface ShibbolethLoginHandler
Interface for pre-login handling. These events occur after the Id is found, and before UserManager attempts a login
of the user.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringString constant identifying the login mechanism -
Method Summary
Modifier and TypeMethodDescriptionvoidexistingUserLogin(String id, javax.servlet.http.HttpServletRequest request) Handle an existing user login.voidnewUserLogin(String id, javax.servlet.http.HttpServletRequest request) Handle a new user login.
-
Field Details
-
MECH_SHIBBOLETH
String constant identifying the login mechanism- See Also:
-
-
Method Details
-
newUserLogin
Handle a new user login.- Parameters:
id- The identity of the user, ideally the Shibboleth persistent unique identifierrequest- The request, for accessing any other Shibboleth variables
-
existingUserLogin
Handle an existing user login.- Parameters:
id- The identity of the user, ideally the Shibboleth persistent unique identifierrequest- The request, for accessing any other Shibboleth variables
-