|
Apache Tomcat 7.0.4 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.catalina.util.LifecycleBase
org.apache.catalina.util.LifecycleMBeanBase
org.apache.catalina.valves.ValveBase
org.apache.catalina.authenticator.AuthenticatorBase
public abstract class AuthenticatorBase
Basic implementation of the Valve interface that enforces the
<security-constraint>
elements in the web application
deployment descriptor. This functionality is implemented as a Valve
so that it can be omitted in environments that do not require these
features. Individual implementations of each supported authentication
method can subclass this base class as required.
USAGE CONSTRAINT: When this class is utilized, the Context to which it is attached (or a parent Container in a hierarchy) must have an associated Realm that can be used for authenticating users and enumerating the roles to which they have been assigned.
USAGE CONSTRAINT: This Valve is only useful when processing HTTP requests. Requests of any other type will simply be passed through.
Field Summary | |
---|---|
protected String |
algorithm
The message digest algorithm to be used when generating session identifiers. |
protected static String |
AUTH_HEADER_NAME
Authentication header |
protected boolean |
cache
Should we cache authenticated Principals if the request is part of an HTTP session? |
protected boolean |
changeSessionIdOnAuthentication
Should the session ID, if any, be changed upon a successful authentication to prevent a session fixation attack? |
protected Context |
context
The Context to which this Valve is attached. |
protected static String |
DEFAULT_ALGORITHM
The default message digest algorithm to use if we cannot use the requested one. |
protected MessageDigest |
digest
Return the MessageDigest implementation to be used when creating session identifiers. |
protected boolean |
disableProxyCaching
Flag to determine if we disable proxy caching, or leave the issue up to the webapp developer. |
protected String |
entropy
A String initialization parameter used to increase the entropy of the initialization of our random number generator. |
protected static String |
info
Descriptive information about this implementation. |
protected Random |
random
A random number generator to use when generating session identifiers. |
protected String |
randomClass
The Java class name of the random number generator class to be used when generating session identifiers. |
protected static String |
REALM_NAME
Default authentication realm name. |
protected boolean |
securePagesWithPragma
Flag to determine if we disable proxy caching with headers incompatible with IE |
protected static int |
SESSION_ID_BYTES
The number of random bytes to include when generating a session identifier. |
protected static StringManager |
sm
The string manager for this package. |
protected SingleSignOn |
sso
The SingleSignOn implementation in our request processing chain, if there is one. |
Fields inherited from class org.apache.catalina.valves.ValveBase |
---|
asyncSupported, container, containerLog, next |
Fields inherited from class org.apache.catalina.util.LifecycleMBeanBase |
---|
mserver |
Fields inherited from interface org.apache.catalina.Lifecycle |
---|
AFTER_INIT_EVENT, AFTER_START_EVENT, AFTER_STOP_EVENT, BEFORE_INIT_EVENT, BEFORE_START_EVENT, BEFORE_STOP_EVENT, CONFIGURE_START_EVENT, CONFIGURE_STOP_EVENT, DESTROY_EVENT, PERIODIC_EVENT, START_EVENT, STOP_EVENT |
Constructor Summary | |
---|---|
AuthenticatorBase()
|
Method Summary | |
---|---|
protected void |
associate(String ssoId,
Session session)
Associate the specified single sign on identifier with the specified Session. |
abstract boolean |
authenticate(Request request,
HttpServletResponse response,
LoginConfig config)
Authenticate the user making this request, based on the specified login configuration. |
protected Principal |
doLogin(Request request,
String username,
String password)
|
protected String |
generateSessionId()
Generate and return a new session identifier for the cookie that identifies an SSO principal. |
String |
getAlgorithm()
Return the message digest algorithm for this Manager. |
protected abstract String |
getAuthMethod()
|
boolean |
getCache()
Return the cache authenticated Principals flag. |
boolean |
getChangeSessionIdOnAuthentication()
Return the flag that states if we should change the session ID of an existing session upon successful authentication. |
Container |
getContainer()
Return the Container to which this Valve is attached. |
protected MessageDigest |
getDigest()
Return the MessageDigest object to be used for calculating session identifiers. |
boolean |
getDisableProxyCaching()
Return the flag that states if we add headers to disable caching by proxies. |
String |
getEntropy()
Return the entropy increaser value, or compute a semi-useful value if this String has not yet been set. |
String |
getInfo()
Return descriptive information about this Valve implementation. |
protected Random |
getRandom()
Return the random number generator instance we should use for generating session identifiers. |
String |
getRandomClass()
Return the random number generator class name. |
boolean |
getSecurePagesWithPragma()
Return the flag that states, if proxy caching is disabled, what headers we add to disable the caching. |
void |
invoke(Request request,
Response response)
Enforce the security restrictions in the web application deployment descriptor of our associated Context. |
void |
login(String username,
String password,
Request request)
|
void |
logout(Request request)
|
protected boolean |
reauthenticateFromSSO(String ssoId,
Request request)
Attempts reauthentication to the Realm using
the credentials included in argument entry . |
void |
register(Request request,
HttpServletResponse response,
Principal principal,
String authType,
String username,
String password)
Register an authenticated Principal and authentication type in our request, in the current session (if there is one), and with our SingleSignOn valve, if there is one. |
void |
setAlgorithm(String algorithm)
Set the message digest algorithm for this Manager. |
void |
setCache(boolean cache)
Set the cache authenticated Principals flag. |
void |
setChangeSessionIdOnAuthentication(boolean changeSessionIdOnAuthentication)
Set the value of the flag that states if we should change the session ID of an existing session upon successful authentication. |
void |
setContainer(Container container)
Set the Container to which this Valve is attached. |
void |
setDisableProxyCaching(boolean nocache)
Set the value of the flag that states if we add headers to disable caching by proxies. |
void |
setEntropy(String entropy)
Set the entropy increaser value. |
void |
setRandomClass(String randomClass)
Set the random number generator class name. |
void |
setSecurePagesWithPragma(boolean securePagesWithPragma)
Set the value of the flag that states what headers we add to disable proxy caching. |
protected void |
startInternal()
Start this component and implement the requirements of LifecycleBase.startInternal() . |
protected void |
stopInternal()
Stop this component and implement the requirements of LifecycleBase.stopInternal() . |
Methods inherited from class org.apache.catalina.valves.ValveBase |
---|
backgroundProcess, event, getDomainInternal, getNext, getObjectNameKeyProperties, initInternal, isAsyncSupported, setAsyncSupported, setNext, toString |
Methods inherited from class org.apache.catalina.util.LifecycleMBeanBase |
---|
destroyInternal, getDomain, getObjectName, postDeregister, postRegister, preDeregister, preRegister, register, setDomain, unregister |
Methods inherited from class org.apache.catalina.util.LifecycleBase |
---|
addLifecycleListener, destroy, findLifecycleListeners, fireLifecycleEvent, getState, getStateName, init, removeLifecycleListener, setState, setState, start, stop |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
protected static final String DEFAULT_ALGORITHM
protected static final int SESSION_ID_BYTES
protected static final String AUTH_HEADER_NAME
protected static final String REALM_NAME
protected String algorithm
java.security.MessageDigest
class on your platform.
protected boolean cache
protected boolean changeSessionIdOnAuthentication
protected Context context
protected MessageDigest digest
protected String entropy
protected static final String info
protected boolean disableProxyCaching
protected boolean securePagesWithPragma
protected Random random
protected String randomClass
protected static final StringManager sm
protected SingleSignOn sso
Constructor Detail |
---|
public AuthenticatorBase()
Method Detail |
---|
public String getAlgorithm()
public void setAlgorithm(String algorithm)
algorithm
- The new message digest algorithmpublic boolean getCache()
public void setCache(boolean cache)
cache
- The new cache flagpublic Container getContainer()
getContainer
in interface Contained
getContainer
in class ValveBase
public void setContainer(Container container)
setContainer
in interface Contained
setContainer
in class ValveBase
container
- The container to which we are attachedpublic String getEntropy()
public void setEntropy(String entropy)
entropy
- The new entropy increaser valuepublic String getInfo()
getInfo
in interface Valve
getInfo
in class ValveBase
public String getRandomClass()
public void setRandomClass(String randomClass)
randomClass
- The new random number generator class namepublic boolean getDisableProxyCaching()
public void setDisableProxyCaching(boolean nocache)
nocache
- true
if we add headers to disable proxy
caching, false
if we leave the headers alone.public boolean getSecurePagesWithPragma()
public void setSecurePagesWithPragma(boolean securePagesWithPragma)
securePagesWithPragma
- true
if we add headers which
are incompatible with downloading office documents in IE under SSL but
which fix a caching problem in Mozilla.public boolean getChangeSessionIdOnAuthentication()
true
to change session ID upon successful
authentication, false
to do not perform the change.public void setChangeSessionIdOnAuthentication(boolean changeSessionIdOnAuthentication)
changeSessionIdOnAuthentication
- true
to change session ID upon successful
authentication, false
to do not perform the
change.public void invoke(Request request, Response response) throws IOException, ServletException
invoke
in interface Valve
invoke
in class ValveBase
request
- Request to be processedresponse
- Response to be processed
IOException
- if an input/output error occurs
ServletException
- if thrown by a processing elementprotected void associate(String ssoId, Session session)
ssoId
- Single sign on identifiersession
- Session to be associatedpublic abstract boolean authenticate(Request request, HttpServletResponse response, LoginConfig config) throws IOException
true
if any specified
constraint has been satisfied, or false
if we have
created a response challenge already.
authenticate
in interface Authenticator
request
- Request we are processingresponse
- Response we are populatingconfig
- Login configuration describing how authentication
should be performed
IOException
- if an input/output error occursprotected String generateSessionId()
protected MessageDigest getDigest()
protected Random getRandom()
protected boolean reauthenticateFromSSO(String ssoId, Request request)
Realm
using
the credentials included in argument entry
.
ssoId
- identifier of SingleSignOn session with which the
caller is associatedrequest
- the request that needs to be authenticatedpublic void register(Request request, HttpServletResponse response, Principal principal, String authType, String username, String password)
request
- The servlet request we are processingresponse
- The servlet response we are generatingprincipal
- The authenticated Principal to be registeredauthType
- The authentication type to be registeredusername
- Username used to authenticate (if any)password
- Password used to authenticate (if any)public void login(String username, String password, Request request) throws ServletException
login
in interface Authenticator
ServletException
protected abstract String getAuthMethod()
protected Principal doLogin(Request request, String username, String password) throws ServletException
ServletException
public void logout(Request request) throws ServletException
logout
in interface Authenticator
ServletException
protected void startInternal() throws LifecycleException
LifecycleBase.startInternal()
.
startInternal
in class ValveBase
LifecycleException
- if this component detects a fatal error
that prevents this component from being usedprotected void stopInternal() throws LifecycleException
LifecycleBase.stopInternal()
.
stopInternal
in class ValveBase
LifecycleException
- if this component detects a fatal error
that prevents this component from being used
|
Apache Tomcat 7.0.4 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |