public enum Action extends Enum<Action>
action
that may be performed against a resource.
Resources will only accept actions which have been registered
as being
supported.Enum Constant and Description |
---|
MODIFY_PASSWORD
An action that allows users to change their password.
|
RESET_PASSWORD
An action that allows users to reset their password.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Action MODIFY_PASSWORD
public static final Action RESET_PASSWORD
public static Action[] values()
for (Action c : Action.values()) System.out.println(c);
public static Action 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 nullCopyright 2010-2018 ForgeRock AS.