We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f6f82b commit 1b5ed3dCopy full SHA for 1b5ed3d
src/main/java/morph/base/actions/impl/GoToFlowAction.java
@@ -10,16 +10,24 @@ public class GoToFlowAction implements Action {
10
11
public static final String GO_TO_FLOW = "goToFlow";
12
private final String nextFlowKey;
13
+ private String nextFlowTitle;
14
-
15
- public GoToFlowAction(String nextFlowKey, boolean rerunCurrectFlow) {
+ public GoToFlowAction(String nextFlowKey) {
16
this.nextFlowKey = nextFlowKey;
17
}
18
19
public String getNextFlowKey() {
20
return nextFlowKey;
21
22
23
+ public String getNextFlowTitle() {
24
+ return nextFlowTitle;
25
+ }
26
+
27
+ public void setNextFlowTitle(String nextFlowTitle) {
28
+ this.nextFlowTitle = nextFlowTitle;
29
30
31
@Override
32
public String getName() {
33
return GO_TO_FLOW;
0 commit comments