blob: 85fc61e2a341f998c76b9f6f1f5af5be9a7345e5 [file] [log] [blame]
/*
* Copyright (c) 2013-2014, JoshuaTree Software. All rights reserved.
*/
package us.jts.commander;
import org.apache.wicket.Component;
import org.apache.wicket.extensions.ajax.markup.html.AjaxLazyLoadPanel;
import org.apache.wicket.markup.html.WebMarkupContainer;
import org.apache.wicket.markup.html.basic.Label;
import us.jts.commander.panel.AuditBindDetailPanel;
import us.jts.commander.panel.AuditBindListPanel;
import us.jts.commander.panel.Displayable;
import us.jts.commander.panel.InfoPanel;
import us.jts.commander.panel.NavPanel;
import us.jts.fortress.rbac.UserAudit;
/**
* @author Shawn McKinney
* @version $Rev$
* Date: 8/11/13
*/
public class AuditBindPage extends CommanderBasePage
{
boolean firstLoad = true;
public AuditBindPage()
{
UserAudit userAudit = new UserAudit();
init( userAudit );
}
public AuditBindPage(final UserAudit userAudit)
{
boolean firstLoad = false;
init( userAudit );
}
private void init(final UserAudit userAudit)
{
add(new Label(GlobalIds.PAGE_HEADER, "Audit Bind Viewer"));
WebMarkupContainer container = new WebMarkupContainer(GlobalIds.LAYOUT);
FourWaySplitter splitter = new FourWaySplitter("60", "40");
splitter.addBorderLayout(container);
// Add the four necessary panels for Commander Page: 1. Nav,, 2. Info, 3. Detail, 4. List, .
// Nav and Info are generic and work across all entities, the others are specific to this entity type.
// 1. Nav Panel:
NavPanel navPanel = new NavPanel(GlobalIds.NAVPANEL);
// 2. Info Panel:
InfoPanel infoPanel;
if( firstLoad )
{
infoPanel = new InfoPanel(GlobalIds.INFOPANEL);
}
else
{
infoPanel = new InfoPanel(GlobalIds.INFOPANEL, "searching authentication records...");
}
container.add(infoPanel);
// 3. Detail Panel:
Displayable display = infoPanel.getDisplay();
AuditBindDetailPanel bindDetail = new AuditBindDetailPanel("binddetailpanel", display);
container.add(bindDetail);
container.add(navPanel);
// 4. List Panel:
container.add(new AjaxLazyLoadPanel("bindlistpanel")
{
@Override
public Component getLazyLoadComponent(String id)
{
return new AuditBindListPanel( id, userAudit );
}
});
this.add(container);
}
}