Package org.springframework.boot.info
Enum Class SslInfo.CertificateValidityInfo.Status
java.lang.Object
java.lang.Enum<SslInfo.CertificateValidityInfo.Status>
org.springframework.boot.info.SslInfo.CertificateValidityInfo.Status
- All Implemented Interfaces:
Serializable
,Comparable<SslInfo.CertificateValidityInfo.Status>
,Constable
- Enclosing class:
- SslInfo.CertificateValidityInfo
public static enum SslInfo.CertificateValidityInfo.Status
extends Enum<SslInfo.CertificateValidityInfo.Status>
Validity Status.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe certificate's validity date range is in the past.The certificate's validity date range is in the future.The certificate is valid.The certificate is still valid, but the end of its validity date range is within the defined threshold. -
Method Summary
-
Enum Constant Details
-
VALID
The certificate is valid. -
NOT_YET_VALID
The certificate's validity date range is in the future. -
EXPIRED
The certificate's validity date range is in the past. -
WILL_EXPIRE_SOON
The certificate is still valid, but the end of its validity date range is within the defined threshold.
-
-
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
-
isValid
public boolean isValid()
-