- All Implemented Interfaces:
Serializable,Comparable<Status>,Constable
Status codes of challenges and authorizations.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAn auto-renewingOrderis canceled.TheAccountorAuthorizationhas been deactivated by the client.TheAuthorizationis expired.An error or authorization/validation failure has occured.The server has created the resource, and is waiting for the client to process it.The server is processing the resource.TheOrderis ready to be finalized.TheAuthorizationhas been revoked by the server.The server did not provide a status, or the provided status is not a specified ACME status.The resource is valid and can be used as intended. -
Method Summary
Modifier and TypeMethodDescriptionstatic StatusParses the string and returns a corresponding Status object.static StatusReturns the enum constant of this class with the specified name.static Status[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PENDING
The server has created the resource, and is waiting for the client to process it. -
READY
TheOrderis ready to be finalized. InvokeOrder.execute(byte[]). -
PROCESSING
The server is processing the resource. The client should invokeAcmeJsonResource.update()and re-check the status. -
VALID
The resource is valid and can be used as intended. -
INVALID
An error or authorization/validation failure has occured. The client should check for error messages. -
REVOKED
TheAuthorizationhas been revoked by the server. -
DEACTIVATED
TheAccountorAuthorizationhas been deactivated by the client. -
EXPIRED
TheAuthorizationis expired. -
CANCELED
An auto-renewingOrderis canceled.- Since:
- 2.3
-
UNKNOWN
The server did not provide a status, or the provided status is not a specified ACME status.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-
parse
Parses the string and returns a corresponding Status object.
-