public enum SigningOption extends java.lang.Enum<SigningOption>
| Enum Constant and Description |
|---|
AUTH_ALIAS
Alias of keypair to use for the outer (authentication) signature.
|
AUTH_PW
Password of keypair to use for the outer (authentication) signature.
|
CLOCK_SKEW
Acceptable difference (in millis) in time calculations to prevent clock synchronisation issues.
|
NON_REPUDIATION
Flag (true/false) to define if inner signature must be placed with a non-repudiation certificate.
|
SIGN_ALIAS
Alias of keypair to use for the inner (non repudiation) signature.
|
SIGN_PW
Password of keypair to use for the inner (non repudiation) signature.
|
SIGNING_TIME_EXPIRATION
Maximum time (in minutes) to consider a sealed message as recent.
|
SIGNING_TIME_TRUST_IMPLICIT
Flag (true/false) to accept messages that have an expired Signing-Time without further verifications.
|
TSA_CERT_STORE
collection of local CRLs and certificates to use for revocation checks.
|
TSA_TRUST_STORE
Truststore with (root) certificates acceptable for TimeStamp Authorities.
|
| Modifier and Type | Method and Description |
|---|---|
static SigningOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SigningOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SigningOption SIGN_ALIAS
public static final SigningOption AUTH_ALIAS
public static final SigningOption SIGN_PW
public static final SigningOption AUTH_PW
public static final SigningOption SIGNING_TIME_EXPIRATION
#SIGNING_TIME_EXPIRED warning will be added to the
result.public static final SigningOption SIGNING_TIME_TRUST_IMPLICIT
public static final SigningOption TSA_TRUST_STORE
public static final SigningOption TSA_CERT_STORE
public static final SigningOption CLOCK_SKEW
public static final SigningOption NON_REPUDIATION
public static SigningOption[] values()
for (SigningOption c : SigningOption.values()) System.out.println(c);
public static SigningOption 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 eHealth. All rights reserved.