protected DashboardListener listener;
public DashboardHandler() {
dashboards = new HashMap<Long, Dashboard>();
currentDashboard = null;
listener = new DashboardListener() {
public void drillDownPerformed(Dashboard parent, Dashboard child) {
currentDashboard = child;
}
public void drillUpPerformed(Dashboard parent, Dashboard child) {
currentDashboard = parent;