protected void validateReadAccess(final String source, final String target) {
    if (!authorizationService.hasAccessToRead(source, target)) {
      throw new ForbiddenAccessException(source, target, "READ");
    }