Enum ActionLink.ActionType
- java.lang.Object
-
- java.lang.Enum<ActionLink.ActionType>
-
- org.apache.syncope.client.console.wicket.markup.html.form.ActionLink.ActionType
-
- All Implemented Interfaces:
Serializable
,Comparable<ActionLink.ActionType>
- Enclosing class:
- ActionLink<T extends Serializable>
public static enum ActionLink.ActionType extends Enum<ActionLink.ActionType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getActionId()
static ActionLink.ActionType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ActionLink.ActionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UP
public static final ActionLink.ActionType UP
-
DOWN
public static final ActionLink.ActionType DOWN
-
MAPPING
public static final ActionLink.ActionType MAPPING
-
MUSTCHANGEPASSWORD
public static final ActionLink.ActionType MUSTCHANGEPASSWORD
-
SET_LATEST_SYNC_TOKEN
public static final ActionLink.ActionType SET_LATEST_SYNC_TOKEN
-
REMOVE_SYNC_TOKEN
public static final ActionLink.ActionType REMOVE_SYNC_TOKEN
-
CLONE
public static final ActionLink.ActionType CLONE
-
CREATE
public static final ActionLink.ActionType CREATE
-
CREATE_CONNECTOR
public static final ActionLink.ActionType CREATE_CONNECTOR
-
CREATE_RESOURCE
public static final ActionLink.ActionType CREATE_RESOURCE
-
TEMPLATE
public static final ActionLink.ActionType TEMPLATE
-
EDIT
public static final ActionLink.ActionType EDIT
-
TYPE_EXTENSIONS
public static final ActionLink.ActionType TYPE_EXTENSIONS
-
HTML
public static final ActionLink.ActionType HTML
-
TEXT
public static final ActionLink.ActionType TEXT
-
COMPOSE
public static final ActionLink.ActionType COMPOSE
-
LAYOUT_EDIT
public static final ActionLink.ActionType LAYOUT_EDIT
-
RESET
public static final ActionLink.ActionType RESET
-
ENABLE
public static final ActionLink.ActionType ENABLE
-
NOT_FOUND
public static final ActionLink.ActionType NOT_FOUND
-
VIEW
public static final ActionLink.ActionType VIEW
-
MEMBERS
public static final ActionLink.ActionType MEMBERS
-
SEARCH
public static final ActionLink.ActionType SEARCH
-
DELETE
public static final ActionLink.ActionType DELETE
-
EXECUTE
public static final ActionLink.ActionType EXECUTE
-
PASSWORD_MANAGEMENT
public static final ActionLink.ActionType PASSWORD_MANAGEMENT
-
REQUEST_PASSWORD_RESET
public static final ActionLink.ActionType REQUEST_PASSWORD_RESET
-
DRYRUN
public static final ActionLink.ActionType DRYRUN
-
CLAIM
public static final ActionLink.ActionType CLAIM
-
UNCLAIM
public static final ActionLink.ActionType UNCLAIM
-
SELECT
public static final ActionLink.ActionType SELECT
-
CLOSE
public static final ActionLink.ActionType CLOSE
-
EXPORT
public static final ActionLink.ActionType EXPORT
-
SUSPEND
public static final ActionLink.ActionType SUSPEND
-
REACTIVATE
public static final ActionLink.ActionType REACTIVATE
-
RELOAD
public static final ActionLink.ActionType RELOAD
-
CHANGE_VIEW
public static final ActionLink.ActionType CHANGE_VIEW
-
UNLINK
public static final ActionLink.ActionType UNLINK
-
LINK
public static final ActionLink.ActionType LINK
-
UNASSIGN
public static final ActionLink.ActionType UNASSIGN
-
ASSIGN
public static final ActionLink.ActionType ASSIGN
-
DEPROVISION
public static final ActionLink.ActionType DEPROVISION
-
PROVISION
public static final ActionLink.ActionType PROVISION
-
DEPROVISION_MEMBERS
public static final ActionLink.ActionType DEPROVISION_MEMBERS
-
PROVISION_MEMBERS
public static final ActionLink.ActionType PROVISION_MEMBERS
-
RECONCILIATION_PUSH
public static final ActionLink.ActionType RECONCILIATION_PUSH
-
RECONCILIATION_PULL
public static final ActionLink.ActionType RECONCILIATION_PULL
-
RECONCILIATION_RESOURCE
public static final ActionLink.ActionType RECONCILIATION_RESOURCE
-
MANAGE_RESOURCES
public static final ActionLink.ActionType MANAGE_RESOURCES
-
MANAGE_ACCOUNTS
public static final ActionLink.ActionType MANAGE_ACCOUNTS
-
MERGE_ACCOUNTS
public static final ActionLink.ActionType MERGE_ACCOUNTS
-
MANAGE_USERS
public static final ActionLink.ActionType MANAGE_USERS
-
MANAGE_GROUPS
public static final ActionLink.ActionType MANAGE_GROUPS
-
PROPAGATION_TASKS
public static final ActionLink.ActionType PROPAGATION_TASKS
-
NOTIFICATION_TASKS
public static final ActionLink.ActionType NOTIFICATION_TASKS
-
PULL_TASKS
public static final ActionLink.ActionType PULL_TASKS
-
PUSH_TASKS
public static final ActionLink.ActionType PUSH_TASKS
-
ZOOM_IN
public static final ActionLink.ActionType ZOOM_IN
-
ZOOM_OUT
public static final ActionLink.ActionType ZOOM_OUT
-
VIEW_EXECUTIONS
public static final ActionLink.ActionType VIEW_EXECUTIONS
-
VIEW_DETAILS
public static final ActionLink.ActionType VIEW_DETAILS
-
MANAGE_APPROVAL
public static final ActionLink.ActionType MANAGE_APPROVAL
-
EDIT_APPROVAL
public static final ActionLink.ActionType EDIT_APPROVAL
-
VIEW_AUDIT_HISTORY
public static final ActionLink.ActionType VIEW_AUDIT_HISTORY
-
EXTERNAL_EDITOR
public static final ActionLink.ActionType EXTERNAL_EDITOR
-
EXPLORE_RESOURCE
public static final ActionLink.ActionType EXPLORE_RESOURCE
-
-
Method Detail
-
values
public static ActionLink.ActionType[] 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 (ActionLink.ActionType c : ActionLink.ActionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ActionLink.ActionType 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
-
getActionId
public String getActionId()
-
-