Enum Class StatusCode

java.lang.Object
java.lang.Enum<StatusCode>
org.projecthusky.xua.saml2.StatusCode
All Implemented Interfaces:
Serializable, Comparable<StatusCode>, Constable

public enum StatusCode extends Enum<StatusCode>
Enumeration of the possible StatusCodes
Enumerierung der möglichen StatusCodes
  • Enum Constant Details

    • AUTHN_FAILED

      public static final StatusCode AUTHN_FAILED
      URI for AuthnFailed status code.
    • INVALID_ATTR_NAME_OR_VALUE

      public static final StatusCode INVALID_ATTR_NAME_OR_VALUE
      URI for InvalidAttrNameOrValue status code.
    • INVALID_NAMEID_POLICY

      public static final StatusCode INVALID_NAMEID_POLICY
      URI for InvalidNameIDPolicy status code.
    • NO_AUTHN_CONTEXT

      public static final StatusCode NO_AUTHN_CONTEXT
      URI for NoAuthnContext status code.
    • NO_AVAILABLE_IDP

      public static final StatusCode NO_AVAILABLE_IDP
      URI for NoAvailableIDP status code.
    • NO_PASSIVE

      public static final StatusCode NO_PASSIVE
      URI for NoPassive status code.
    • NO_SUPPORTED_IDP

      public static final StatusCode NO_SUPPORTED_IDP
      URI for NoSupportedIDP status code.
    • PARTIAL_LOGOUT

      public static final StatusCode PARTIAL_LOGOUT
      URI for PartialLogout status code.
    • PROXY_COUNT_EXCEEDED

      public static final StatusCode PROXY_COUNT_EXCEEDED
      URI for ProxyCountExceeded status code.
    • REQUEST_DENIED

      public static final StatusCode REQUEST_DENIED
      URI for RequestDenied status code.
    • REQUEST_UNSUPPORTED

      public static final StatusCode REQUEST_UNSUPPORTED
      URI for RequestUnsupported status code.
    • REQUEST_VERSION_DEPRECATED

      public static final StatusCode REQUEST_VERSION_DEPRECATED
      URI for RequestVersionDeprecated status code.
    • REQUEST_VERSION_TOO_HIGH

      public static final StatusCode REQUEST_VERSION_TOO_HIGH
      URI for RequestVersionTooHigh status code.
    • REQUEST_VERSION_TOO_LOW

      public static final StatusCode REQUEST_VERSION_TOO_LOW
      URI for RequestVersionTooLow status code.
    • REQUESTER

      public static final StatusCode REQUESTER
      URI for Requester status code.
    • RESOURCE_NOT_RECOGNIZED

      public static final StatusCode RESOURCE_NOT_RECOGNIZED
      URI for ResourceNotRecognized status code.
    • RESPONDER

      public static final StatusCode RESPONDER
      URI for Responder status code.
    • SUCCESS

      public static final StatusCode SUCCESS
      URI for Success status code.
    • TOO_MANY_RESPONSES

      public static final StatusCode TOO_MANY_RESPONSES
      URI for TooManyResponses status code.
    • UNKNOWN_ATTR_PROFILE

      public static final StatusCode UNKNOWN_ATTR_PROFILE
      URI for UnknownAttrProfile status code.
    • UNKNOWN_PRINCIPAL

      public static final StatusCode UNKNOWN_PRINCIPAL
      URI for UnknownPrincipal status code.
    • UNSUPPORTED_BINDING

      public static final StatusCode UNSUPPORTED_BINDING
      URI for UnsupportedBinding status code.
    • VERSION_MISMATCH

      public static final StatusCode VERSION_MISMATCH
      URI for VersionMismatch status code.
  • Method Details

    • values

      public static StatusCode[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static StatusCode valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getEnum

      public static StatusCode getEnum(String code)
      Gets the enum.
      Parameters:
      code - the code
      Returns:
      the enum
    • toString

      public String toString()
      Overrides:
      toString in class Enum<StatusCode>