public enum SignatureProfile extends Enum<SignatureProfile>
Enum Constant and Description |
---|
B_BES
no profile (baseline)
|
B_EPES
no profile (baseline) with signature id (compatible with BDoc)
|
LT
Signature with Long Term Data - Timestamp and OCSP confirmation (ASIC-E format)
|
LT_TM
Time-mark, similar to LT (BDoc 2.1 format).
|
LTA
Archive timestamp, same as XAdES LTA (Long Term Archive time-stamp)
|
T
Signature with a timestamp - Timestamp without OCSP confirmation
|
Modifier and Type | Method and Description |
---|---|
static SignatureProfile |
findByProfile(String profile)
Find SignatureProfile by profile string.
|
static SignatureProfile |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SignatureProfile[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SignatureProfile LT_TM
public static final SignatureProfile LT
public static final SignatureProfile LTA
public static final SignatureProfile T
public static final SignatureProfile B_BES
public static final SignatureProfile B_EPES
public static SignatureProfile[] values()
for (SignatureProfile c : SignatureProfile.values()) System.out.println(c);
public static SignatureProfile valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static SignatureProfile findByProfile(String profile)
profile
- Copyright © 2024. All rights reserved.