Skip to content

Commit

Permalink
PagePostAuthentication no-arg constructor is added
Browse files Browse the repository at this point in the history
  • Loading branch information
KaterynaHonchar committed Nov 11, 2022
1 parent 1b2a588 commit f8bc137
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ public class PagePostAuthentication extends PageAbstractFlow {
private IModel<UserType> userModel;
private PrismObjectWrapper<UserType> objectWrapper;

public PagePostAuthentication() {
super(null);
}

public PagePostAuthentication(PageParameters pageParameters) {
super(pageParameters);
}
Expand Down

0 comments on commit f8bc137

Please sign in to comment.