public void deleteAll(List arg0)
      throws BTBookingException, StaleDataException, BTContainerException, BTSiteException {
    BTBookingFacade facade = createFacade();

    try {
      facade.deleteAll(arg0);
    } catch (RemoteException e) {
      LogWithUserInfo.error(log, "deleteAll", e);
      throw new InfrastructureException(e);
    } finally {
      removeFacadeQuietly(facade);
    }
  }