public List getUsedCurrencyText() {
    List result = null;
    BTBookingFacade facade = createFacade();

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

    return result;
  }