Package org.apache.geronimo.samples.daytrader.direct

Examples of org.apache.geronimo.samples.daytrader.direct.TradeDirect


  public AccountDataBean login(String userID, String password) throws Exception, RemoteException {
    return (new TradeDirect(true)).login(userID, password);
  }

  public void logout(String userID) throws Exception, RemoteException {
    (new TradeDirect(true)).logout(userID);
  }
View Full Code Here


  public void logout(String userID) throws Exception, RemoteException {
    (new TradeDirect(true)).logout(userID);
  }

  public AccountDataBean register(String userID, String password, String fullname, String address, String email, String creditcard, BigDecimal openBalance) throws Exception, RemoteException {
    return (new TradeDirect(true)).register(userID, password, fullname, address, email, creditcard, openBalance);
  }
View Full Code Here

  public AccountDataBean register(String userID, String password, String fullname, String address, String email, String creditcard, BigDecimal openBalance) throws Exception, RemoteException {
    return (new TradeDirect(true)).register(userID, password, fullname, address, email, creditcard, openBalance);
  }

  public RunStatsDataBean resetTrade(boolean deleteAll) throws Exception, RemoteException {
    return (new TradeDirect(true)).resetTrade(deleteAll);
  }
View Full Code Here

TOP

Related Classes of org.apache.geronimo.samples.daytrader.direct.TradeDirect

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.