Enum WoofResourceSecurityModel.WoofResourceSecurityEvent
- java.lang.Object
-
- java.lang.Enum<WoofResourceSecurityModel.WoofResourceSecurityEvent>
-
- net.officefloor.woof.model.resources.WoofResourceSecurityModel.WoofResourceSecurityEvent
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<WoofResourceSecurityModel.WoofResourceSecurityEvent>
- Enclosing class:
- WoofResourceSecurityModel
public static enum WoofResourceSecurityModel.WoofResourceSecurityEvent extends java.lang.Enum<WoofResourceSecurityModel.WoofResourceSecurityEvent>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADD_REQUIRED_ROLE
ADD_ROLE
CHANGE_HTTP_SECURITY_NAME
REMOVE_REQUIRED_ROLE
REMOVE_ROLE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WoofResourceSecurityModel.WoofResourceSecurityEvent
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static WoofResourceSecurityModel.WoofResourceSecurityEvent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHANGE_HTTP_SECURITY_NAME
public static final WoofResourceSecurityModel.WoofResourceSecurityEvent CHANGE_HTTP_SECURITY_NAME
-
ADD_ROLE
public static final WoofResourceSecurityModel.WoofResourceSecurityEvent ADD_ROLE
-
REMOVE_ROLE
public static final WoofResourceSecurityModel.WoofResourceSecurityEvent REMOVE_ROLE
-
ADD_REQUIRED_ROLE
public static final WoofResourceSecurityModel.WoofResourceSecurityEvent ADD_REQUIRED_ROLE
-
REMOVE_REQUIRED_ROLE
public static final WoofResourceSecurityModel.WoofResourceSecurityEvent REMOVE_REQUIRED_ROLE
-
-
Method Detail
-
values
public static WoofResourceSecurityModel.WoofResourceSecurityEvent[] 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 (WoofResourceSecurityModel.WoofResourceSecurityEvent c : WoofResourceSecurityModel.WoofResourceSecurityEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WoofResourceSecurityModel.WoofResourceSecurityEvent valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-