Class AuthStatus

java.lang.Object
jakarta.security.auth.message.AuthStatus

public class AuthStatus extends Object
Represents the status returned by JASPIC authentication operations. The authentication status indicates whether authentication succeeded, failed, or requires further message exchange.
  • Field Details

    • SUCCESS

      public static final AuthStatus SUCCESS
      Authentication succeeded and no further message exchange is required.
    • FAILURE

      public static final AuthStatus FAILURE
      Authentication failed and no further message exchange will change the outcome.
    • SEND_SUCCESS

      public static final AuthStatus SEND_SUCCESS
      Authentication succeeded and the response should be sent to the peer.
    • SEND_FAILURE

      public static final AuthStatus SEND_FAILURE
      Authentication failed and the failure response should be sent to the peer.
    • SEND_CONTINUE

      public static final AuthStatus SEND_CONTINUE
      Authentication is in progress and further message exchange is required.
  • Method Details