Enum ValidatorContext
- java.lang.Object
-
- java.lang.Enum<ValidatorContext>
-
- com.itextpdf.signatures.validation.context.ValidatorContext
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ValidatorContext>
public enum ValidatorContext extends java.lang.Enum<ValidatorContext>
This enum lists all possible contexts related to the validator in which the validation is taking place.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CERTIFICATE_CHAIN_VALIDATOR
This value is expected to be used inCertificateChainValidator
context.CRL_VALIDATOR
This value is expected to be used inCRLValidator
context.DOCUMENT_REVISIONS_VALIDATOR
This value is expected to be used inDocumentRevisionsValidator
context.OCSP_VALIDATOR
This value is expected to be used inOCSPValidator
context.REVOCATION_DATA_VALIDATOR
This value is expected to be used inRevocationDataValidator
context.SIGNATURE_VALIDATOR
This value is expected to be used in SignatureValidator context.
-
Constructor Summary
Constructors Modifier Constructor Description private
ValidatorContext()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ValidatorContext
valueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
OCSP_VALIDATOR
public static final ValidatorContext OCSP_VALIDATOR
This value is expected to be used inOCSPValidator
context.
-
CRL_VALIDATOR
public static final ValidatorContext CRL_VALIDATOR
This value is expected to be used inCRLValidator
context.
-
REVOCATION_DATA_VALIDATOR
public static final ValidatorContext REVOCATION_DATA_VALIDATOR
This value is expected to be used inRevocationDataValidator
context.
-
CERTIFICATE_CHAIN_VALIDATOR
public static final ValidatorContext CERTIFICATE_CHAIN_VALIDATOR
This value is expected to be used inCertificateChainValidator
context.
-
SIGNATURE_VALIDATOR
public static final ValidatorContext SIGNATURE_VALIDATOR
This value is expected to be used in SignatureValidator context.
-
DOCUMENT_REVISIONS_VALIDATOR
public static final ValidatorContext DOCUMENT_REVISIONS_VALIDATOR
This value is expected to be used inDocumentRevisionsValidator
context.
-
-
Method Detail
-
values
public static ValidatorContext[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ValidatorContext c : ValidatorContext.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ValidatorContext valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-