protected void validateAdminAcess(final String source, final String target) {
    if (!authorizationService.hasAccessToAdmin(source, target)) {
      throw new ForbiddenAccessException(source, target, "ADMIN");
    }