Skip to content

Commit

Permalink
ldap legacy fix for hybrid
Browse files Browse the repository at this point in the history
  • Loading branch information
GIlca committed May 3, 2023
1 parent e2b21af commit bbad4b6
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 bbad4b6

Please sign in to comment.