*
* @exception IOException if an input/output error occurs
*/
+ @Override
public abstract boolean authenticate(Request request,
HttpServletResponse response,
LoginConfig config)
}
+ @Override
public void login(String username, String password, Request request)
throws ServletException {
Principal principal = doLogin(request, username, password);
return p;
}
+ @Override
public void logout(Request request) throws ServletException {
register(request, request.getResponse(), null,
null, null, null);
*/
public SingleSignOnEntry(Principal principal, String authType,
String username, String password) {
- super();
- updateCredentials(principal, authType, username, password);
- }
- public SingleSignOnEntry() {
+ updateCredentials(principal, authType, username, password);
}
// ------------------------------------------------------- Package Methods