public class CertPathPKIXValidationOptions extends PKIXValidationOptions
PKIXValidationOptions
which specifies options specific to a PKIXTrustEvaluator
based on the Java CertPath API.Constructor and Description |
---|
CertPathPKIXValidationOptions()
Constructor.
|
Modifier and Type | Method and Description |
---|---|
boolean |
isForceRevocationEnabled()
If true, the revocation behavior of the underlying CertPath provider will be forced to the
value supplied by
isRevocationEnabled() . |
boolean |
isRevocationEnabled()
If
isForceRevocationEnabled() is true, the revocation behavior of the underlying CertPath Provider
will be forced to this value. |
void |
setForceRevocationEnabled(boolean forceRevocationEnabled)
If true, the revocation behavior of the underlying CertPath provider will be forced to the
value supplied by
isRevocationEnabled() . |
void |
setRevocationEnabled(boolean revocationEnabled)
If
isForceRevocationEnabled() is true, the revocation behavior of the underlying CertPath Provider
will be forced to this value. |
getDefaultVerificationDepth, isProcessCredentialCRLs, isProcessEmptyCRLs, isProcessExpiredCRLs, setDefaultVerificationDepth, setProcessCredentialCRLs, setProcessEmptyCRLs, setProcessExpiredCRLs
public CertPathPKIXValidationOptions()
public boolean isForceRevocationEnabled()
isRevocationEnabled()
. If false, the revocation behavior
of the underlying provider will be determined by the PKIXTrustEvaluator implementation.
Default is: false
public void setForceRevocationEnabled(boolean forceRevocationEnabled)
isRevocationEnabled()
. If false, the revocation behavior
of the underlying provider will be determined by the PKIXTrustEvaluator implementation.
Default is: false
forceRevocationEnabled
- The forceRevocationEnabled to set.public boolean isRevocationEnabled()
isForceRevocationEnabled()
is true, the revocation behavior of the underlying CertPath Provider
will be forced to this value. If the former is false, the revocation behavior
of the underlying provider will be determined by the PKIXTrustEvaluator implementation.
Default is: true
public void setRevocationEnabled(boolean revocationEnabled)
isForceRevocationEnabled()
is true, the revocation behavior of the underlying CertPath Provider
will be forced to this value. If the former is false, the revocation behavior
of the underlying provider will be determined by the PKIXTrustEvaluator implementation.
Default is: true
revocationEnabled
- The revocationEnabled to set.Copyright © 2018 JBoss by Red Hat. All rights reserved.