Skip to content

Commit

Permalink
Merge pull request #225 from fgonzal/master
Browse files Browse the repository at this point in the history
Make LoginView more inheritance friendly.
  • Loading branch information
ar authored Sep 16, 2021
2 parents e2aeccc + 93fced2 commit dcfda07
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions modules/qi-core/src/main/java/org/jpos/qi/login/LoginView.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@

@SuppressWarnings("serial")
public class LoginView extends VerticalLayout {
private QI app;
private LoginHelper helper;
protected QI app;
protected LoginHelper helper;
private TextField username;
private PasswordField password;
private CheckBox rememberMe;
private HorizontalLayout buttonsLayout;
private Label errorLabel;
private Button loginBtn;
private Binder<String> binder; //just used to add validators to fields
protected CheckBox rememberMe;
protected HorizontalLayout buttonsLayout;
protected Label errorLabel;
protected Button loginBtn;
protected Binder<String> binder; //just used to add validators to fields

protected TextField getUsernameField() {
return username;
Expand Down

0 comments on commit dcfda07

Please sign in to comment.