Enum WorkManagerSecurity.Tag
- java.lang.Object
-
- java.lang.Enum<WorkManagerSecurity.Tag>
-
- org.jboss.as.connector.metadata.api.resourceadapter.WorkManagerSecurity.Tag
-
- All Implemented Interfaces:
Serializable,Comparable<WorkManagerSecurity.Tag>
- Enclosing interface:
- WorkManagerSecurity
public static enum WorkManagerSecurity.Tag extends Enum<WorkManagerSecurity.Tag>
A Tag.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEFAULT_GROUPSdefault-groups tagDEFAULT_PRINCIPALdefault-principal tagDOMAINdomain tagELYTRON_SECURITY_DOMAINIs Elytron enabledGROUPgroup tagGROUPSgroups tagMAPmap tagMAPPING_REQUIREDmapping-required tagMAPPINGSmappings tagUNKNOWNalways firstUSERSusers tag
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static WorkManagerSecurity.TagforName(String localName)Static method to get enum instance given localName stringStringgetLocalName()Get the local name of this element.StringtoString()static WorkManagerSecurity.TagvalueOf(String name)Returns the enum constant of this type with the specified name.static WorkManagerSecurity.Tag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ELYTRON_SECURITY_DOMAIN
public static final WorkManagerSecurity.Tag ELYTRON_SECURITY_DOMAIN
Is Elytron enabled
-
UNKNOWN
public static final WorkManagerSecurity.Tag UNKNOWN
always first
-
MAPPING_REQUIRED
public static final WorkManagerSecurity.Tag MAPPING_REQUIRED
mapping-required tag
-
DOMAIN
public static final WorkManagerSecurity.Tag DOMAIN
domain tag
-
DEFAULT_PRINCIPAL
public static final WorkManagerSecurity.Tag DEFAULT_PRINCIPAL
default-principal tag
-
DEFAULT_GROUPS
public static final WorkManagerSecurity.Tag DEFAULT_GROUPS
default-groups tag
-
GROUP
public static final WorkManagerSecurity.Tag GROUP
group tag
-
MAPPINGS
public static final WorkManagerSecurity.Tag MAPPINGS
mappings tag
-
USERS
public static final WorkManagerSecurity.Tag USERS
users tag
-
GROUPS
public static final WorkManagerSecurity.Tag GROUPS
groups tag
-
MAP
public static final WorkManagerSecurity.Tag MAP
map tag
-
-
Method Detail
-
values
public static WorkManagerSecurity.Tag[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (WorkManagerSecurity.Tag c : WorkManagerSecurity.Tag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WorkManagerSecurity.Tag valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getLocalName
public String getLocalName()
Get the local name of this element.- Returns:
- the local name
-
toString
public String toString()
- Overrides:
toStringin classEnum<WorkManagerSecurity.Tag>
-
forName
public static WorkManagerSecurity.Tag forName(String localName)
Static method to get enum instance given localName string- Parameters:
localName- a string used as localname (typically tag name as defined in xsd)- Returns:
- the enum instance
-
-