public interface Authenticator
Modifier and Type | Method and Description |
---|---|
boolean |
authenticate(Request request,
HttpServletResponse response)
Authenticate the user making this request, based on the login
configuration of the
Context with which this Authenticator is
associated. |
void |
login(java.lang.String userName,
java.lang.String password,
Request request) |
void |
logout(Request request) |
boolean authenticate(Request request, HttpServletResponse response) throws java.io.IOException
Context
with which this Authenticator is
associated.request
- Request we are processingresponse
- Response we are populatingtrue
if any specified constraints have been
satisfied, or false
if one more constraints were not
satisfied (in which case an authentication challenge will have
been written to the response).java.io.IOException
- if an input/output error occursvoid login(java.lang.String userName, java.lang.String password, Request request) throws ServletException
ServletException
void logout(Request request)
Copyright © 2000-2018 Apache Software Foundation. All Rights Reserved.