public enum AttributeManagerTypeEnum extends Enum<AttributeManagerTypeEnum>
Enum defining alias for each supported built-in AttributeManager
provided by
PicketLink. The alias is used in the configuration without using the full qualified name of a type.
Enum Constant and Description |
---|
EMPTY_ATTRIBUTE_MANAGER |
UNDERTOW_ATTRIBUTE_MANAGER |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static AttributeManagerTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttributeManagerTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeManagerTypeEnum UNDERTOW_ATTRIBUTE_MANAGER
public static final AttributeManagerTypeEnum EMPTY_ATTRIBUTE_MANAGER
public static AttributeManagerTypeEnum[] values()
for (AttributeManagerTypeEnum c : AttributeManagerTypeEnum.values()) System.out.println(c);
public static AttributeManagerTypeEnum 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 toString()
toString
in class Enum<AttributeManagerTypeEnum>
Copyright © 2017 JBoss by Red Hat. All rights reserved.