File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
src/main/java/morph/base/actions/impl Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -10,16 +10,24 @@ public class GoToFlowAction implements Action {
10
10
11
11
public static final String GO_TO_FLOW = "goToFlow" ;
12
12
private final String nextFlowKey ;
13
+ private String nextFlowTitle ;
13
14
14
-
15
- public GoToFlowAction (String nextFlowKey , boolean rerunCurrectFlow ) {
15
+ public GoToFlowAction (String nextFlowKey ) {
16
16
this .nextFlowKey = nextFlowKey ;
17
17
}
18
18
19
19
public String getNextFlowKey () {
20
20
return nextFlowKey ;
21
21
}
22
22
23
+ public String getNextFlowTitle () {
24
+ return nextFlowTitle ;
25
+ }
26
+
27
+ public void setNextFlowTitle (String nextFlowTitle ) {
28
+ this .nextFlowTitle = nextFlowTitle ;
29
+ }
30
+
23
31
@ Override
24
32
public String getName () {
25
33
return GO_TO_FLOW ;
You can’t perform that action at this time.
0 commit comments