public enum XmlKeyInfoKeyNameTransformer extends Enum<XmlKeyInfoKeyNameTransformer>
Enum Constant and Description |
---|
CERT_SUBJECT |
KEY_ID |
NONE |
Modifier and Type | Method and Description |
---|---|
static XmlKeyInfoKeyNameTransformer |
from(String name,
XmlKeyInfoKeyNameTransformer defaultValue) |
abstract String |
getKeyName(String keyId,
X509Certificate certificate) |
static XmlKeyInfoKeyNameTransformer |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XmlKeyInfoKeyNameTransformer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XmlKeyInfoKeyNameTransformer NONE
public static final XmlKeyInfoKeyNameTransformer KEY_ID
public static final XmlKeyInfoKeyNameTransformer CERT_SUBJECT
public static XmlKeyInfoKeyNameTransformer[] values()
for (XmlKeyInfoKeyNameTransformer c : XmlKeyInfoKeyNameTransformer.values()) System.out.println(c);
public static XmlKeyInfoKeyNameTransformer 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 abstract String getKeyName(String keyId, X509Certificate certificate)
public static XmlKeyInfoKeyNameTransformer from(String name, XmlKeyInfoKeyNameTransformer defaultValue)
Copyright © 2021 JBoss by Red Hat. All rights reserved.