Skip to content

Commit 1b5ed3d

Browse files
author
ishan
committed
getter
1 parent 9f6f82b commit 1b5ed3d

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

Diff for: src/main/java/morph/base/actions/impl/GoToFlowAction.java

+10-2
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,24 @@ public class GoToFlowAction implements Action {
1010

1111
public static final String GO_TO_FLOW = "goToFlow";
1212
private final String nextFlowKey;
13+
private String nextFlowTitle;
1314

14-
15-
public GoToFlowAction(String nextFlowKey, boolean rerunCurrectFlow) {
15+
public GoToFlowAction(String nextFlowKey) {
1616
this.nextFlowKey = nextFlowKey;
1717
}
1818

1919
public String getNextFlowKey() {
2020
return nextFlowKey;
2121
}
2222

23+
public String getNextFlowTitle() {
24+
return nextFlowTitle;
25+
}
26+
27+
public void setNextFlowTitle(String nextFlowTitle) {
28+
this.nextFlowTitle = nextFlowTitle;
29+
}
30+
2331
@Override
2432
public String getName() {
2533
return GO_TO_FLOW;

0 commit comments

Comments
 (0)