Class SimpleServerAuthContext
- java.lang.Object
-
- org.apache.catalina.authenticator.jaspic.SimpleServerAuthContext
-
- All Implemented Interfaces:
ServerAuthContext
,ServerAuth
public class SimpleServerAuthContext extends java.lang.Object implements ServerAuthContext
Basic implementation primarily intended for use when using third-partyServerAuthModule
implementations that only provide the module. This implementation supports multiple modules and will treat the user as authenticated if any one module is able to authenticate the user.
-
-
Constructor Summary
Constructors Constructor Description SimpleServerAuthContext(java.util.List<ServerAuthModule> modules)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
cleanSubject(MessageInfo messageInfo, javax.security.auth.Subject subject)
Remove principals and/or credentials from the subject that were previously added by this authentication mechanism.AuthStatus
secureResponse(MessageInfo messageInfo, javax.security.auth.Subject serviceSubject)
Secure (authenticate) the response.AuthStatus
validateRequest(MessageInfo messageInfo, javax.security.auth.Subject clientSubject, javax.security.auth.Subject serviceSubject)
Validate the request.
-
-
-
Constructor Detail
-
SimpleServerAuthContext
public SimpleServerAuthContext(java.util.List<ServerAuthModule> modules)
-
-
Method Detail
-
validateRequest
public AuthStatus validateRequest(MessageInfo messageInfo, javax.security.auth.Subject clientSubject, javax.security.auth.Subject serviceSubject) throws AuthException
Description copied from interface:javax.security.auth.message.ServerAuth
Validate the request.- Specified by:
validateRequest
in interfaceServerAuth
- Parameters:
messageInfo
- The associated request and responseclientSubject
- The subject that represents the source of the requestserviceSubject
- The subject that represents the recipient of the request- Returns:
- An AuthStatus instance that represents the result of the validation
- Throws:
AuthException
- If the a failure occurred in a manner that prevented the failure from being communicated via messageInfo
-
secureResponse
public AuthStatus secureResponse(MessageInfo messageInfo, javax.security.auth.Subject serviceSubject) throws AuthException
Description copied from interface:javax.security.auth.message.ServerAuth
Secure (authenticate) the response.- Specified by:
secureResponse
in interfaceServerAuth
- Parameters:
messageInfo
- The associated request and responseserviceSubject
- The subject that represents the source of the response- Returns:
- An AuthStatus instance that represents the result of the authentication
- Throws:
AuthException
- If the a failure occurred in a manner that prevented the failure from being communicated via messageInfo
-
cleanSubject
public void cleanSubject(MessageInfo messageInfo, javax.security.auth.Subject subject) throws AuthException
Description copied from interface:javax.security.auth.message.ServerAuth
Remove principals and/or credentials from the subject that were previously added by this authentication mechanism.- Specified by:
cleanSubject
in interfaceServerAuth
- Parameters:
messageInfo
- The associated request and responsesubject
- The subject to clean- Throws:
AuthException
- If the a failure occurred
-
-