Package org.kuali.rice.kew.api.action
Enum Class ActionType
- All Implemented Interfaces:
Serializable,Comparable<ActionType>,Constable,Coded
An enumeration which indicates valid actions that can be taken against workflow documents.
- Author:
- Kuali Rice Team (rice.collab@kuali.org)
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDocument has been opened by the designated recipient.User has generated an action request to another userAdHoc Request has been revokedThe document has been approved.Document has been canceled.Document has been completed as requested.Document has been disapproved.The document has non-routed activity against it that is recorded in the route logThe document is movedThe document is being recalled.The person who took group authority is releasing itThe document is being returned to a previous routelevelDocument has been submitted to the engine for processing.Document has been saved by the user for later workThe document is routed to a group and a user in the group wants to take authority from the group -
Method Summary
Modifier and TypeMethodDescriptionstatic ActionTypestatic ActionTypestatic ActionTypefromCodeOrLabel(String str) static ActionTypegetCode()getLabel()static ActionTypeConverts a non-super-user ActionType to its SuperUser equivalentstatic ActionTypeReturns the enum constant of this class with the specified name.static ActionType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SU_ACKNOWLEDGE
-
SU_FYI
-
SU_COMPLETE
-
SU_APPROVE
-
SU_ROUTE_NODE_APPROVE
-
SU_RETURN_TO_PREVIOUS
-
SU_DISAPPROVE
-
SU_CANCEL
-
SU_BLANKET_APPROVE
-
BLANKET_APPROVE
-
FYI
-
ADHOC_REQUEST
User has generated an action request to another user -
ADHOC_REQUEST_REVOKE
AdHoc Request has been revoked -
SAVE
Document has been saved by the user for later work -
CANCEL
Document has been canceled. -
DISAPPROVE
Document has been disapproved. -
ACKNOWLEDGE
Document has been opened by the designated recipient. -
COMPLETE
Document has been completed as requested. -
ROUTE
Document has been submitted to the engine for processing. -
APPROVE
The document has been approved. -
RETURN_TO_PREVIOUS
The document is being returned to a previous routelevel -
RECALL
The document is being recalled.- Since:
- 2.1
-
LOG_MESSAGE
The document has non-routed activity against it that is recorded in the route log -
TAKE_GROUP_AUTHORITY
The document is routed to a group and a user in the group wants to take authority from the group -
RELEASE_GROUP_AUTHORITY
The person who took group authority is releasing it -
MOVE
The document is moved
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
getCode
-
getLabel
-
fromCode
-
fromCode
-
fromLabel
-
fromCodeOrLabel
-
toSuperUserActionType
Converts a non-super-user ActionType to its SuperUser equivalent- Parameters:
at- the ActionType- Returns:
- super-user version of ActionType or null if no equivalent SU action type
- Since:
- 2.1.3
-