Skip to content

Commit

Permalink
Merge pull request #1415 from CloudSlang/fix_ldap
Browse files Browse the repository at this point in the history
ldap legacy fix for hybrid
  • Loading branch information
QueueUpX authored Jun 15, 2023
2 parents f86c354 + 9507630 commit 8d4b6d6
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,18 @@
*/
public class ParentFlowStack implements Serializable {

private static final long serialVersionUID = -3596242783100345155L;

private Deque<ParentFlowData> stack;

public ParentFlowStack() {
this.stack = new ArrayDeque<>();
}

public ParentFlowData peekFirstParentFlowData() {
return stack.peekFirst();
}

public void pushParentFlowData(ParentFlowData newContext) {
stack.push(newContext);
}
Expand Down

0 comments on commit 8d4b6d6

Please sign in to comment.