public enum ValidationResultType extends java.lang.Enum<ValidationResultType>
The Validation Process validates an electronic signature, the output status of the validation process can be:
An Invalid response indicates that either the signature format is incorrect or that the digital signature value fails validation (e.g. the integrity check on the digital signature value fails or any of the certificates on which the digital signature validation depends is known to be invalid or revoked).
An Incomplete Validation response indicates that the format and digital signature verifications have not failed but there is insufficient information to determine if the electronic signature is valid (for example when all the required certificates are not available or the grace period is not completed). In the case of Incomplete Validation, the electronic signature may be checked again at some later time when additional validation information becomes available. Also, in the case of incomplete validation, additional information may be made available to the application or user, thus allowing the application or user to decide what to do with partially correct electronic signatures.
A Valid response indicates that the signature has passed validation and it complies with the signature validation policy.
| Enum Constant and Description |
|---|
INCOMPLETE |
INVALID |
VALID |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
static ValidationResultType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ValidationResultType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidationResultType INVALID
public static final ValidationResultType INCOMPLETE
public static final ValidationResultType WARNING
public static final ValidationResultType VALID
public static ValidationResultType[] values()
for (ValidationResultType c : ValidationResultType.values()) System.out.println(c);
public static ValidationResultType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2025. All rights reserved.