use of org.apache.syncope.client.console.panels.SAML2IdPsDirectoryPanel in project syncope by apache.
the class SAML2SP method buildTabList.
private List<ITab> buildTabList() {
final List<ITab> tabs = new ArrayList<>(2);
tabs.add(new AbstractTab(new ResourceModel("idps")) {
private static final long serialVersionUID = -6815067322125799251L;
@Override
public Panel getPanel(final String panelId) {
return new SAML2IdPsDirectoryPanel(panelId, getPageReference());
}
});
tabs.add(new AbstractTab(new ResourceModel("sp")) {
private static final long serialVersionUID = -6815067322125799251L;
@Override
public Panel getPanel(final String panelId) {
return new SAML2SPPanel(panelId);
}
});
return tabs;
}
Aggregations