Skip to content

Commit

Permalink
Merge pull request #227 from fgonzal/master
Browse files Browse the repository at this point in the history
Make QI more inheritance friendly.
  • Loading branch information
ar authored Sep 20, 2021
2 parents dcfda07 + 828fb43 commit 4db7b2b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions modules/qi-core/src/main/java/org/jpos/qi/QI.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,22 @@ public QI() {
valueContext = new ValueContext(locale);
}

protected QILayout getQILayout() {
return qiLayout;
}

protected Sidebar getSidebar() {
return sidebar;
}

protected Visitor getVisitor() {
return visitor;
}

protected LoginView getLoginView() {
return loginView;
}

private void parseMessages() {
Properties master = new Properties();
for (Element element: availableLocales) {
Expand Down

0 comments on commit 4db7b2b

Please sign in to comment.