Skip to content

Commit

Permalink
code changes for OrkesWorkflowClient
Browse files Browse the repository at this point in the history
  • Loading branch information
Shailesh Jagannath Padave committed Nov 18, 2024
1 parent d0967c1 commit 9906b15
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,23 +120,23 @@ public void terminateWorkflowWithFailure(String workflowId, String reason, boole
workflowResource.terminateWithAReason(workflowId, reason, triggerFailureWorkflow);
}

public BulkResponse<String> pauseWorkflow(List<String> workflowIds) {
public BulkResponse pauseWorkflow(List<String> workflowIds) {
return bulkResource.pauseWorkflows(workflowIds);
}

public BulkResponse<String> restartWorkflow(List<String> workflowIds, Boolean useLatestDefinitions) {
public BulkResponse restartWorkflow(List<String> workflowIds, Boolean useLatestDefinitions) {
return bulkResource.restartWorkflows(workflowIds, useLatestDefinitions);
}

public BulkResponse<String> resumeWorkflow(List<String> workflowIds) {
public BulkResponse resumeWorkflow(List<String> workflowIds) {
return bulkResource.resumeWorkflows(workflowIds);
}

public BulkResponse<String> retryWorkflow(List<String> workflowIds) {
public BulkResponse retryWorkflow(List<String> workflowIds) {
return bulkResource.retryWorkflows(workflowIds);
}

public BulkResponse<String> terminateWorkflowsWithFailure(List<String> workflowIds, String reason, boolean triggerFailureWorkflow) {
public BulkResponse terminateWorkflowsWithFailure(List<String> workflowIds, String reason, boolean triggerFailureWorkflow) {
return bulkResource.terminateWorkflows(workflowIds, reason, triggerFailureWorkflow);
}

Expand Down

0 comments on commit 9906b15

Please sign in to comment.