Enum CredentialJwtIssuerMetadataResponse.Action

    • Enum Constant Detail

      • OK

        public static final CredentialJwtIssuerMetadataResponse.Action OK
        JWT issuer metadata has been prepared successfully. The implementation of the JWT issuer metadata endpoint should return an HTTP response with the HTTP status code "200 OK" and the content type "application/json".
      • NOT_FOUND

        public static final CredentialJwtIssuerMetadataResponse.Action NOT_FOUND
        The feature of Verifiable Credentials is not enabled. The implementation of the JWT issuer metadata endpoint should return an HTTP response with the HTTP status code "404 Not Found" and the content type "application/json" to indicate that the endpoint should not be accessed.
      • INTERNAL_SERVER_ERROR

        public static final CredentialJwtIssuerMetadataResponse.Action INTERNAL_SERVER_ERROR
        An unexpected error occurred on Authlete side or the service has not been set up properly yet. A simple implementation of the JWT issuer metadata endpoint would return an HTTP response with the HTTP status code "500 Internal Server Error" and the content type "application/json".
    • Method Detail

      • values

        public static CredentialJwtIssuerMetadataResponse.Action[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (CredentialJwtIssuerMetadataResponse.Action c : CredentialJwtIssuerMetadataResponse.Action.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CredentialJwtIssuerMetadataResponse.Action valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
        NullPointerException - if the argument is null