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_VALIDATORThis value is expected to be used inCertificateChainValidatorcontext.CRL_VALIDATORThis value is expected to be used inCRLValidatorcontext.DOCUMENT_REVISIONS_VALIDATORThis value is expected to be used inDocumentRevisionsValidatorcontext.OCSP_VALIDATORThis value is expected to be used inOCSPValidatorcontext.REVOCATION_DATA_VALIDATORThis value is expected to be used inRevocationDataValidatorcontext.SIGNATURE_VALIDATORThis value is expected to be used in SignatureValidator context.
-
Constructor Summary
Constructors Modifier Constructor Description privateValidatorContext()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ValidatorContextvalueOf(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 inOCSPValidatorcontext.
-
CRL_VALIDATOR
public static final ValidatorContext CRL_VALIDATOR
This value is expected to be used inCRLValidatorcontext.
-
REVOCATION_DATA_VALIDATOR
public static final ValidatorContext REVOCATION_DATA_VALIDATOR
This value is expected to be used inRevocationDataValidatorcontext.
-
CERTIFICATE_CHAIN_VALIDATOR
public static final ValidatorContext CERTIFICATE_CHAIN_VALIDATOR
This value is expected to be used inCertificateChainValidatorcontext.
-
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 inDocumentRevisionsValidatorcontext.
-
-
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
-
-