| java.lang.Object winstone.auth.BaseAuthenticationHandler
All known Subclasses: winstone.auth.DigestAuthenticationHandler, winstone.auth.BasicAuthenticationHandler, winstone.auth.ClientcertAuthenticationHandler, winstone.auth.FormAuthenticationHandler,
BaseAuthenticationHandler | abstract public class BaseAuthenticationHandler implements AuthenticationHandler(Code) | | Base class for managers of authentication within Winstone. This class also
acts as a factory, loading the appropriate subclass for the requested auth
type.
author: mailto: Rick Knowles version: $Id: BaseAuthenticationHandler.java,v 1.6 2006/02/28 07:32:47 rickknowles Exp $ |
BaseAuthenticationHandler | protected BaseAuthenticationHandler(Node loginConfigNode, List constraintNodes, Set rolesAllowed, AuthenticationRealm realm)(Code) | | Factory method - this parses the web.xml nodes and builds the correct
subclass for handling that auth type.
|
processAuthentication | public boolean processAuthentication(ServletRequest inRequest, ServletResponse inResponse, String pathRequested) throws IOException, ServletException(Code) | | Evaluates any authentication constraints, intercepting if auth is
required. The relevant authentication handler subclass's logic is used to
actually authenticate.
A boolean indicating whether to continue after this request |
|
|