protected void validateWriteAccess(final String source, final String target) {
    if (!authorizationService.hasAccessToWrite(source, target)) {
      throw new ForbiddenAccessException(source, target, "WRITE");
    }