- 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 ConstantDescriptionAn auto-renewingOrder
is canceled.TheAccount
orAuthorization
has been deactivated by the client.TheAuthorization
is 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.TheOrder
is ready to be finalized.TheAuthorization
has 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 Status
Parses the string and returns a corresponding Status object.static Status
Returns 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
TheOrder
is 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
TheAuthorization
has been revoked by the server. -
DEACTIVATED
TheAccount
orAuthorization
has been deactivated by the client. -
EXPIRED
TheAuthorization
is expired. -
CANCELED
An auto-renewingOrder
is 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.
-