public enum CertIdentityPoolExternalIdentifier extends Enum<CertIdentityPoolExternalIdentifier>
| Enum Constant and Description |
|---|
CN |
CN_SNID |
DN |
SAN |
SAN_SNID |
SHA1 |
SNID |
| Modifier and Type | Method and Description |
|---|---|
static CertIdentityPoolExternalIdentifier |
findExternalIdentifierFromIdentityPools(Collection<CertIdentityPool> pools)
Determine the externalIdentifier with the highest priority from a collection of identity pools.
|
String |
getDescription() |
int |
getPriority() |
String |
getValue() |
static CertIdentityPoolExternalIdentifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CertIdentityPoolExternalIdentifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CertIdentityPoolExternalIdentifier CN
public static final CertIdentityPoolExternalIdentifier DN
public static final CertIdentityPoolExternalIdentifier SNID
public static final CertIdentityPoolExternalIdentifier CN_SNID
public static final CertIdentityPoolExternalIdentifier SAN
public static final CertIdentityPoolExternalIdentifier SAN_SNID
public static final CertIdentityPoolExternalIdentifier SHA1
public static CertIdentityPoolExternalIdentifier[] values()
for (CertIdentityPoolExternalIdentifier c : CertIdentityPoolExternalIdentifier.values()) System.out.println(c);
public static CertIdentityPoolExternalIdentifier 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 String getValue()
public int getPriority()
public String getDescription()
public static CertIdentityPoolExternalIdentifier findExternalIdentifierFromIdentityPools(Collection<CertIdentityPool> pools)