Uses of Class
jakarta.security.auth.message.AuthStatus

Packages that use AuthStatus
Package
Description
This package defines the core interfaces of Jakarta Authentication.
  • Uses of AuthStatus in jakarta.security.auth.message

    Modifier and Type
    Field
    Description
    static final AuthStatus
    AuthStatus.FAILURE
    Indicates that the message processing by the authentication module was NOT successful, and that the module replaced the application message with an error message.
    static final AuthStatus
    AuthStatus.SEND_CONTINUE
    Indicates the message processing by the authentication module is NOT complete, that the module replaced the application message with a security message, and that the runtime is to proceed by sending the security message.
    static final AuthStatus
    AuthStatus.SEND_FAILURE
    Indicates that the message processing by the authentication module was NOT successful, that the module replaced the application message with an error message, and that the runtime is to proceed by sending the error message.
    static final AuthStatus
    AuthStatus.SEND_SUCCESS
    Indicates that the message processing by the authentication module was successful and that the runtime is to proceed by sending a message returned by the authentication module.
    static final AuthStatus
    AuthStatus.SUCCESS
    Indicates that the message processing by the authentication module was successful and that the runtime is to proceed with its normal processing of the resulting message.
    Modifier and Type
    Method
    Description
    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.
    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.