コード例 #1
0
  public void addBTSiteToSites(BTBookingDto arg0, BTSiteDto arg1) throws BTBookingException {
    BTBookingFacade facade = createFacade();

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