Package net.pricefx.common.dto
Class InsertWorkflowStepsDTO
- Object
-
- InsertWorkflowStepsDTO
-
public class InsertWorkflowStepsDTO extends Object
-
-
Constructor Summary
Constructors Constructor Description InsertWorkflowStepsDTO()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LinkedHashSet<WorkflowDTO.StepDTO>
getSteps()
WorkflowDTO.ApprovalStepDTO
insertApprovalStep(String uniqueName)
Inserts an approval step right after workflow post logic step that is executing this code.WorkflowDTO.WatcherStepDTO
insertWatcherStep(String uniqueName)
Inserts a watcher step right after workflow post logic step that is executing this code.boolean
isPostStepLogicFailed()
void
setPostStepLogicFailed(boolean postStepLogicFailed)
-
-
-
Method Detail
-
insertApprovalStep
public WorkflowDTO.ApprovalStepDTO insertApprovalStep(String uniqueName)
Inserts an approval step right after workflow post logic step that is executing this code.- Parameters:
uniqueName
- Name of the step- Returns:
-
insertWatcherStep
public WorkflowDTO.WatcherStepDTO insertWatcherStep(String uniqueName)
Inserts a watcher step right after workflow post logic step that is executing this code. A watcher step cannot approve or deny, but will receive a notification when it becomes active.- Parameters:
uniqueName
- Name of the step- Returns:
-
getSteps
public LinkedHashSet<WorkflowDTO.StepDTO> getSteps()
-
isPostStepLogicFailed
public boolean isPostStepLogicFailed()
-
setPostStepLogicFailed
public void setPostStepLogicFailed(boolean postStepLogicFailed)
-
-