CertPathValidatorException.BasicReason

public static final enum CertPathValidatorException.BasicReason
extends Enum<CertPathValidatorException.BasicReason> implements CertPathValidatorException.Reason

java.lang.Object
   ↳ java.lang.Enum<java.security.cert.CertPathValidatorException.BasicReason>
     ↳ java.security.cert.CertPathValidatorException.BasicReason


The BasicReason enumerates the potential reasons that a certification path of any type may be invalid.

Summary

Enum values

CertPathValidatorException.BasicReason  ALGORITHM_CONSTRAINED

The public key or the signature algorithm has been constrained. 

CertPathValidatorException.BasicReason  EXPIRED

The certificate is expired. 

CertPathValidatorException.BasicReason  INVALID_SIGNATURE

The signature is invalid. 

CertPathValidatorException.BasicReason  NOT_YET_VALID

The certificate is not yet valid. 

CertPathValidatorException.BasicReason  REVOKED

The certificate is revoked. 

CertPathValidatorException.BasicReason  UNDETERMINED_REVOCATION_STATUS

The revocation status of the certificate could not be determined. 

CertPathValidatorException.BasicReason  UNSPECIFIED

Unspecified reason. 

Public methods

static CertPathValidatorException.BasicReason valueOf(String name)
static final BasicReason[] values()

Inherited methods

Enum values

ALGORITHM_CONSTRAINED

Added in API level 24
public static final CertPathValidatorException.BasicReason ALGORITHM_CONSTRAINED

The public key or the signature algorithm has been constrained.

EXPIRED

Added in API level 24
public static final CertPathValidatorException.BasicReason EXPIRED

The certificate is expired.

INVALID_SIGNATURE

Added in API level 24
public static final CertPathValidatorException.BasicReason INVALID_SIGNATURE

The signature is invalid.

NOT_YET_VALID

Added in API level 24
public static final CertPathValidatorException.BasicReason NOT_YET_VALID

The certificate is not yet valid.

REVOKED

Added in API level 24
public static final CertPathValidatorException.BasicReason REVOKED

The certificate is revoked.

UNDETERMINED_REVOCATION_STATUS

Added in API level 24
public static final CertPathValidatorException.BasicReason UNDETERMINED_REVOCATION_STATUS

The revocation status of the certificate could not be determined.

UNSPECIFIED

Added in API level 24
public static final CertPathValidatorException.BasicReason UNSPECIFIED

Unspecified reason.

Public methods

valueOf

public static CertPathValidatorException.BasicReason valueOf (String name)

Parameters
name String

Returns
CertPathValidatorException.BasicReason

values

public static final BasicReason[] values ()

Returns
BasicReason[]