public enum SubIndication extends java.lang.Enum<SubIndication>
Enum Constant | Description |
---|---|
CERTIFICATE_NO_REVOCATION_INFORMATION |
The certificate has no revocation information.
|
CHAIN_CONSTRAINTS_FAILURE |
The signature is considered invalid because the certificate chain used in the validation process does not match the validation constraints related to the certificate.
|
CRYPTO_CONSTRAINTS_FAILURE |
The signature is considered invalid because at least one of the algorithms used in an element (e.g.
|
CRYPTO_CONSTRAINTS_FAILURE_NO_POE |
At least one of the algorithms used in an element (e.g.
|
EXPIRED |
The signature is considered invalid because the Signature Validation Algorithm has detected that the signing time is after the expiration date (notAfter) of the signer's certificate.
|
EXPIRED_NO_REVOCATION_INFORMATION |
The certificate has expired and no revocation information is available in the signature or document.
|
FORMAT_FAILURE |
The signature is not conformant to one of the base standards
|
GENERIC |
Any other reason
|
HASH_FAILURE |
The signature is invalid because at least one hash of the signed data object(s) included in the signing process does not match the corresponding hash value in the signature.
|
INCOMPLETE_CERTIFICATE_CHAIN |
The certificate's chain is incomplete.
|
MISSING_REVOCATION_INFORMATION |
No revocation information is available in the revocation information sources.
|
NO_CERTIFICATE_CHAIN_FOUND |
No certificate chain has been found for the identified signer's certificate.
|
NO_POE |
A proof of existence that proves whether a signed object was produced before a compromising event (e.g.
|
NO_POLICY |
The policy to use for validation could not be identified.
|
NO_SIGNER_CERTIFICATE_FOUND |
The signer's certificate cannot be identified.
|
NOT_YET_VALID |
The signature is considered invalid because the Signature Validation Algorithm has detected that the signing time is before the issue date (notBefore) of the signer's certificate.
|
OUT_OF_BOUNDS_NO_POE |
The signer's certificate is expired or not yet valid at the validation date/time.
|
POLICY_PROCESSING_ERROR |
The formal policy file could not be processed (e.g.
|
REVOKED |
The signer's certificate has been revoked.
|
REVOKED_CA_NO_POE |
At least one certificate chain was found, but an intermediate CA certificate has been revoked.
|
REVOKED_NO_POE |
The signer's certificate was revoked at the validation date/time.
|
SIG_CONSTRAINTS_FAILURE |
The signature is considered invalid because one or more properties of the signature do not match the validation constraints.
|
SIG_CRYPTO_FAILURE |
The signature is invalid because the signature value in the signature could not be verified using the signer's public key in the signer's certificate.
|
SIGNED_DATA_NOT_FOUND |
Cannot obtain signed data.
|
TIMESTAMP_ORDER_FAILURE |
Constraints on the order of signature time-stamps and/or signed data object (s) time-stamps are not respected.
|
TRY_LATER |
Insufficient information to fulfill all constraints.
|
UNKNOWN_COMMITMENT_TYPE |
The signature was created using a policy and commitment type that is unknown to the SVA.
|
UNTRUSTED |
The certificate is not trusted because there is no valid path to a trust anchor.
|
Modifier and Type | Method | Description |
---|---|---|
static SubIndication |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static SubIndication[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubIndication REVOKED
public static final SubIndication HASH_FAILURE
public static final SubIndication SIG_CRYPTO_FAILURE
public static final SubIndication SIG_CONSTRAINTS_FAILURE
public static final SubIndication CHAIN_CONSTRAINTS_FAILURE
public static final SubIndication CRYPTO_CONSTRAINTS_FAILURE
public static final SubIndication EXPIRED
public static final SubIndication NOT_YET_VALID
public static final SubIndication FORMAT_FAILURE
public static final SubIndication POLICY_PROCESSING_ERROR
public static final SubIndication UNKNOWN_COMMITMENT_TYPE
public static final SubIndication TIMESTAMP_ORDER_FAILURE
public static final SubIndication NO_SIGNER_CERTIFICATE_FOUND
public static final SubIndication NO_CERTIFICATE_CHAIN_FOUND
public static final SubIndication REVOKED_NO_POE
public static final SubIndication REVOKED_CA_NO_POE
public static final SubIndication OUT_OF_BOUNDS_NO_POE
public static final SubIndication CRYPTO_CONSTRAINTS_FAILURE_NO_POE
public static final SubIndication NO_POE
public static final SubIndication TRY_LATER
public static final SubIndication NO_POLICY
public static final SubIndication SIGNED_DATA_NOT_FOUND
public static final SubIndication INCOMPLETE_CERTIFICATE_CHAIN
public static final SubIndication CERTIFICATE_NO_REVOCATION_INFORMATION
public static final SubIndication MISSING_REVOCATION_INFORMATION
public static final SubIndication EXPIRED_NO_REVOCATION_INFORMATION
public static final SubIndication UNTRUSTED
public static final SubIndication GENERIC
public static SubIndication[] values()
for (SubIndication c : SubIndication.values()) System.out.println(c);
public static SubIndication 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 null