private TagService tagService;
@RequestMapping(method=RequestMethod.GET)
public ModelAndView detail(@PathVariable("orgId") int orgId,
HttpServletRequest request) {
Organization organization = organizationService.loadById(orgId);
List<Application> apps = PermissionUtils.filterApps(organization);
if (organization == null || !organization.isActive()) {
log.warn(ResourceNotFoundException.getLogMessage("Organization", orgId));
throw new ResourceNotFoundException();
} else if (!PermissionUtils.isAuthorized(Permission.READ_ACCESS,orgId,null) &&
(apps == null || apps.size() == 0)) {