-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #149 from orkes-io/jump_task_changes
Jump task changes
- Loading branch information
Showing
4 changed files
with
83 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
src/main/java/io/orkes/conductor/client/model/JumpWorkflowExecutionRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
package io.orkes.conductor.client.model; | ||
|
||
import java.util.Map; | ||
|
||
public class JumpWorkflowExecutionRequest { | ||
|
||
public Map<String, Object> getSkippedTasksOutput() { | ||
return skippedTasksOutput; | ||
} | ||
|
||
public void setSkippedTasksOutput(Map<String, Object> skippedTasksOutput) { | ||
this.skippedTasksOutput = skippedTasksOutput; | ||
} | ||
|
||
public Map<String, Object> getJumpTaskInput() { | ||
return jumpTaskInput; | ||
} | ||
|
||
public void setJumpTaskInput(Map<String, Object> jumpTaskInput) { | ||
this.jumpTaskInput = jumpTaskInput; | ||
} | ||
|
||
public String getTaskReferenceName() { | ||
return taskReferenceName; | ||
} | ||
|
||
public void setTaskReferenceName(String taskReferenceName) { | ||
this.taskReferenceName = taskReferenceName; | ||
} | ||
private Map<String, Object> skippedTasksOutput; | ||
|
||
private Map<String, Object> jumpTaskInput; | ||
|
||
private String taskReferenceName; | ||
|
||
} |