public void onPermissionsLoaded(Set<Permission> permissions) {
globalPermissions = permissions;
// now make async call to look for customized dash for this user and entity
DashboardCriteria criteria = new DashboardCriteria();
criteria.addFilterCategory(DashboardCategory.RESOURCE);
criteria.addFilterResourceId(resourceComposite.getResource().getId());
dashboardService.findDashboardsByCriteria(criteria, new AsyncCallback<PageList<Dashboard>>() {
public void onFailure(Throwable caught) {
CoreGUI.getErrorHandler().handleError(MSG.view_dashboardsManager_error1(), caught);
}