Uses of Class
javax.security.auth.message.AuthException
-
Packages that use AuthException Package Description javax.security.auth.message This package defines the core interfaces of the JSR 196 message authentication SPI.javax.security.auth.message.config This package defines the interfaces implemented by JSR 196 compatible configuration systems.javax.security.auth.message.module This package defines the interfaces implemented by JSR 196 compatible authentication modules. -
-
Uses of AuthException in javax.security.auth.message
Methods in javax.security.auth.message that throw AuthException Modifier and Type Method Description void
ClientAuth. cleanSubject(MessageInfo messageInfo, javax.security.auth.Subject subject)
Remove implementation specific principals and credentials from the subject.void
ServerAuth. cleanSubject(MessageInfo messageInfo, javax.security.auth.Subject subject)
Remove method specific principals and credentials from the subject.AuthStatus
ClientAuth. secureRequest(MessageInfo messageInfo, javax.security.auth.Subject clientSubject)
Secure a service request message before sending it to the service.AuthStatus
ServerAuth. secureResponse(MessageInfo messageInfo, javax.security.auth.Subject serviceSubject)
Secure a service response before sending it to the client.AuthStatus
ServerAuth. validateRequest(MessageInfo messageInfo, javax.security.auth.Subject clientSubject, javax.security.auth.Subject serviceSubject)
Authenticate a received service request.AuthStatus
ClientAuth. validateResponse(MessageInfo messageInfo, javax.security.auth.Subject clientSubject, javax.security.auth.Subject serviceSubject)
Validate a received service response. -
Uses of AuthException in javax.security.auth.message.config
Methods in javax.security.auth.message.config that throw AuthException Modifier and Type Method Description ClientAuthContext
ClientAuthConfig. getAuthContext(java.lang.String authContextID, javax.security.auth.Subject clientSubject, java.util.Map properties)
Get a ClientAuthContext instance from this ClientAuthConfig.ServerAuthContext
ServerAuthConfig. getAuthContext(java.lang.String authContextID, javax.security.auth.Subject serviceSubject, java.util.Map properties)
Get a ServerAuthContext instance from this ServerAuthConfig.ClientAuthConfig
AuthConfigProvider. getClientAuthConfig(java.lang.String layer, java.lang.String appContext, javax.security.auth.callback.CallbackHandler handler)
Get an instance of ClientAuthConfig from this provider.ServerAuthConfig
AuthConfigProvider. getServerAuthConfig(java.lang.String layer, java.lang.String appContext, javax.security.auth.callback.CallbackHandler handler)
Get an instance of ServerAuthConfig from this provider. -
Uses of AuthException in javax.security.auth.message.module
Methods in javax.security.auth.message.module that throw AuthException Modifier and Type Method Description void
ClientAuthModule. initialize(MessagePolicy requestPolicy, MessagePolicy responsePolicy, javax.security.auth.callback.CallbackHandler handler, java.util.Map options)
Initialize this module with request and response message policies to enforce, a CallbackHandler, and any module-specific configuration properties.void
ServerAuthModule. initialize(MessagePolicy requestPolicy, MessagePolicy responsePolicy, javax.security.auth.callback.CallbackHandler handler, java.util.Map options)
Initialize this module with request and response message policies to enforce, a CallbackHandler, and any module-specific configuration properties.
-