public static void lockObject(String id, String lockId, String subject, boolean system) {
    org.sakaiproject.content.api.ContentHostingService service = getInstance();
    if (service == null) return;

    service.lockObject(id, lockId, subject, system);
  }