public static enum Identity.Format extends java.lang.Enum<Identity.Format>
The MSCAPI-based digital identity format is a function of key container naming scheme that is employed by the MSCAPI key container(s) that the identity contains. The digital identity format determines how/if the digital identity is managed.
| Enum Constant and Description |
|---|
ENTRUST_LEGACY
Represents a legacy Entrust MSCAPI-based digital identity; digital
identity management is not supported on identities of this format.
|
ENTRUST_V1
Represents a V1-key-pair Entrust MSCAPI-based digital identity;
digital identity management is supported on identities of this
format.
|
ENTRUST_V2
Represents a V2-key-pair Entrust MSCAPI-based digital identity;
digital identity management is supported on identities of this
format.
|
NON_ENTRUST
Represents an MSCAPI-based digital identity that is not of Entrust
format; digital identity management is not supported on identities of
this format.
|
| Modifier and Type | Method and Description |
|---|---|
static Identity.Format |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Identity.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Identity.Format NON_ENTRUST
Note: This does not mean that the keys/certificates in a digital identity of this format were issued by a non-Entrust certification authority. It simply means that the digital identity format is non-Entrust (not recognized by Entrust software).
public static final Identity.Format ENTRUST_LEGACY
public static final Identity.Format ENTRUST_V1
public static final Identity.Format ENTRUST_V2
public static Identity.Format[] values()
for (Identity.Format c : Identity.Format.values()) System.out.println(c);
public static Identity.Format 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