コード例 #1
0
  public List findAll() {
    List result = null;
    BTBookingFacade facade = createFacade();

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

    return result;
  }