Package | Description |
---|---|
org.apache.catalina | |
org.apache.catalina.authenticator |
This package contains
Authenticator implementations for the
various supported authentication methods (BASIC, DIGEST, and FORM). |
org.apache.catalina.core | |
org.apache.catalina.startup |
Modifier and Type | Method and Description |
---|---|
LoginConfig |
Context.getLoginConfig()
Return the login configuration descriptor for this web application.
|
Modifier and Type | Method and Description |
---|---|
void |
Context.setLoginConfig(LoginConfig config)
Set the login configuration descriptor for this web application.
|
Modifier and Type | Method and Description |
---|---|
boolean |
BasicAuthenticator.authenticate(Request request,
javax.servlet.http.HttpServletResponse response,
LoginConfig config)
Authenticate the user making this request, based on the specified
login configuration.
|
boolean |
DigestAuthenticator.authenticate(Request request,
javax.servlet.http.HttpServletResponse response,
LoginConfig config)
Authenticate the user making this request, based on the specified
login configuration.
|
boolean |
NonLoginAuthenticator.authenticate(Request request,
javax.servlet.http.HttpServletResponse response,
LoginConfig config)
Authenticate the user making this request, based on the specified
login configuration.
|
boolean |
FormAuthenticator.authenticate(Request request,
javax.servlet.http.HttpServletResponse response,
LoginConfig config)
Authenticate the user making this request, based on the specified
login configuration.
|
protected abstract boolean |
AuthenticatorBase.authenticate(Request request,
javax.servlet.http.HttpServletResponse response,
LoginConfig config)
Authenticate the user making this request, based on the specified
login configuration.
|
boolean |
SSLAuthenticator.authenticate(Request request,
javax.servlet.http.HttpServletResponse response,
LoginConfig config)
Authenticate the user by checking for the existence of a certificate
chain, and optionally asking a trust manager to validate that we trust
this user.
|
protected void |
FormAuthenticator.forwardToErrorPage(Request request,
javax.servlet.http.HttpServletResponse response,
LoginConfig config)
Called to forward to the error page
|
protected void |
FormAuthenticator.forwardToLoginPage(Request request,
javax.servlet.http.HttpServletResponse response,
LoginConfig config)
Called to forward to the login page
|
protected void |
DigestAuthenticator.setAuthenticateHeader(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response,
LoginConfig config,
String nonce,
boolean isNonceStale)
Generates the WWW-Authenticate header.
|
Modifier and Type | Field and Description |
---|---|
protected LoginConfig |
StandardContext.loginConfig
The login configuration descriptor for this web application.
|
Modifier and Type | Method and Description |
---|---|
LoginConfig |
StandardContext.getLoginConfig()
Return the login configuration descriptor for this web application.
|
Modifier and Type | Method and Description |
---|---|
void |
StandardContext.setLoginConfig(LoginConfig config)
Set the login configuration descriptor for this web application.
|
Modifier and Type | Field and Description |
---|---|
protected static LoginConfig |
ContextConfig.DUMMY_LOGIN_CONFIG |
Copyright © 2013 JBoss by Red Hat. All rights reserved.