public enum ValidatorContext extends Enum<ValidatorContext>
| Enum Constant and Description |
|---|
CERTIFICATE_CHAIN_VALIDATOR
This value is expected to be used in
CertificateChainValidator context. |
CRL_VALIDATOR
This value is expected to be used in
CRLValidator context. |
DOCUMENT_REVISIONS_VALIDATOR
This value is expected to be used in
DocumentRevisionsValidator context. |
OCSP_VALIDATOR
This value is expected to be used in
OCSPValidator context. |
REVOCATION_DATA_VALIDATOR
This value is expected to be used in
RevocationDataValidator context. |
SIGNATURE_VALIDATOR
This value is expected to be used in SignatureValidator context.
|
| Modifier and Type | Method and Description |
|---|---|
static ValidatorContext |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValidatorContext[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidatorContext OCSP_VALIDATOR
OCSPValidator context.public static final ValidatorContext CRL_VALIDATOR
CRLValidator context.public static final ValidatorContext REVOCATION_DATA_VALIDATOR
RevocationDataValidator context.public static final ValidatorContext CERTIFICATE_CHAIN_VALIDATOR
CertificateChainValidator context.public static final ValidatorContext SIGNATURE_VALIDATOR
public static final ValidatorContext DOCUMENT_REVISIONS_VALIDATOR
DocumentRevisionsValidator context.public static ValidatorContext[] values()
for (ValidatorContext c : ValidatorContext.values()) System.out.println(c);
public static ValidatorContext valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 1998–2025 Apryse Group NV. All rights reserved.