public static boolean verifyFileEntryCheckOut(
      long repositoryId, long fileEntryId, java.lang.String lockUuid) throws RemoteException {
    try {
      boolean returnValue =
          DLAppServiceUtil.verifyFileEntryCheckOut(repositoryId, fileEntryId, lockUuid);

      return returnValue;
    } catch (Exception e) {
      _log.error(e, e);

      throw new RemoteException(e.getMessage());
    }
  }