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