public enum WorkflowAction extends Enum<WorkflowAction>
Enum Constant and Description |
---|
ADD_PARTICIPANTS
Adds participants to an active workflow.
|
CANCEL_WORKFLOW
Cancels an active workflow.
|
REMOVE_ITEMS
Removes items in an active workflow.
|
REPLACE_WORKFLOW_OWNER
Replaces the workflow owner of an active workflow.
|
UPDATE_WORKFLOW_DUE_DATE
Updates the due date of an active workflow.
|
Modifier and Type | Method and Description |
---|---|
static WorkflowAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkflowAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkflowAction ADD_PARTICIPANTS
WorkflowInstanceService.addParticipants(WorkflowAddParticipantsRequest)
to get the WorkflowAddParticipantsOperation
to perform this action.public static final WorkflowAction CANCEL_WORKFLOW
WorkflowInstanceService.cancelWorkflow(WorkflowCancelRequest)
to get the
WorkflowCancelOperation
to perform this action.public static final WorkflowAction REMOVE_ITEMS
WorkflowInstanceService.removeItems(WorkflowRemoveItemsRequest)
to get the WorkflowRemoveItemsOperation
to perform this action.public static final WorkflowAction REPLACE_WORKFLOW_OWNER
WorkflowInstanceService.replaceWorkflowOwner(WorkflowReplaceOwnerRequest)
to get the WorkflowReplaceOwnerOperation
to perform this action.public static final WorkflowAction UPDATE_WORKFLOW_DUE_DATE
WorkflowInstanceService.updateWorkflowDueDate(WorkflowUpdateDueDateRequest)
to get the
WorkflowUpdateDueDateOperation
to perform this action.public static WorkflowAction[] values()
for (WorkflowAction c : WorkflowAction.values()) System.out.println(c);
public static WorkflowAction 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 © Veeva Systems 2017–2023. All rights reserved.