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.
| Enum values | |
|---|---|
| CertPathValidatorException.BasicReason | ALGORITHM_CONSTRAINEDThe public key or the signature algorithm has been constrained. | 
| CertPathValidatorException.BasicReason | EXPIREDThe certificate is expired. | 
| CertPathValidatorException.BasicReason | INVALID_SIGNATUREThe signature is invalid. | 
| CertPathValidatorException.BasicReason | NOT_YET_VALIDThe certificate is not yet valid. | 
| CertPathValidatorException.BasicReason | REVOKEDThe certificate is revoked. | 
| CertPathValidatorException.BasicReason | UNDETERMINED_REVOCATION_STATUSThe revocation status of the certificate could not be determined. | 
| CertPathValidatorException.BasicReason | UNSPECIFIEDUnspecified reason. | 
| Public methods | |
|---|---|
| 
        
        
        static
        
        
        CertPathValidatorException.BasicReason | 
      valueOf(String name)
       | 
| 
        
        
        static
        final
        
        BasicReason[] | 
      values()
       | 
| Inherited methods | |
|---|---|
|  From
class 
  
    java.lang.Enum
  
 | |
|  From
class 
  
    java.lang.Object
  
 | |
|  From
interface 
  
    java.lang.Comparable
  
 | |
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.
CertPathValidatorException.BasicReason valueOf (String name)
| Parameters | |
|---|---|
| name | String | 
| Returns | |
|---|---|
| CertPathValidatorException.BasicReason | |