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

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


  public Collection getClosedOrders(String userID) throws Exception, RemoteException {
    return (new TradeDirect(true)).getClosedOrders(userID);
  }

  public QuoteDataBean createQuote(String symbol, String companyName, BigDecimal price) throws Exception, RemoteException {
    return (new TradeDirect(true)).createQuote(symbol, companyName, price);
  }
View Full Code Here


  public QuoteDataBean createQuote(String symbol, String companyName, BigDecimal price) throws Exception, RemoteException {
    return (new TradeDirect(true)).createQuote(symbol, companyName, price);
  }

  public QuoteDataBean getQuote(String symbol) throws Exception, RemoteException {
    return (new TradeDirect(true)).getQuote(symbol);
  }
View Full Code Here

  public QuoteDataBean getQuote(String symbol) throws Exception, RemoteException {
    return (new TradeDirect(true)).getQuote(symbol);
  }

  public Collection getAllQuotes() throws Exception, RemoteException {
    return (new TradeDirect(true)).getAllQuotes();
  }
View Full Code Here

  public Collection getAllQuotes() throws Exception, RemoteException {
    return (new TradeDirect(true)).getAllQuotes();
  }

  public QuoteDataBean updateQuotePriceVolume(String symbol, BigDecimal newPrice, double sharesTraded) throws Exception, RemoteException {
    return (new TradeDirect(true)).updateQuotePriceVolume(symbol, newPrice, sharesTraded);
  }
View Full Code Here

  public QuoteDataBean updateQuotePriceVolume(String symbol, BigDecimal newPrice, double sharesTraded) throws Exception, RemoteException {
    return (new TradeDirect(true)).updateQuotePriceVolume(symbol, newPrice, sharesTraded);
  }

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

  public Collection getHoldings(String userID) throws Exception, RemoteException {
    return (new TradeDirect(true)).getHoldings(userID);
  }

  public HoldingDataBean getHolding(Integer holdingID) throws Exception, RemoteException {
    return (new TradeDirect(true)).getHolding(holdingID);
  }
View Full Code Here

  public HoldingDataBean getHolding(Integer holdingID) throws Exception, RemoteException {
    return (new TradeDirect(true)).getHolding(holdingID);
  }

  public AccountDataBean getAccountData(String userID) throws javax.ejb.FinderException, Exception {
    return (new TradeDirect(true)).getAccountData(userID);
  }
View Full Code Here

  public AccountDataBean getAccountData(String userID) throws javax.ejb.FinderException, Exception {
    return (new TradeDirect(true)).getAccountData(userID);
  }

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

  public AccountProfileDataBean getAccountProfileData(String userID) throws Exception, RemoteException {
    return (new TradeDirect(true)).getAccountProfileData(userID);
  }

  public AccountProfileDataBean updateAccountProfile(AccountProfileDataBean profileData) throws Exception, RemoteException {
    return (new TradeDirect(true)).updateAccountProfile(profileData);
  }
View Full Code Here

  public AccountProfileDataBean updateAccountProfile(AccountProfileDataBean profileData) throws Exception, RemoteException {
    return (new TradeDirect(true)).updateAccountProfile(profileData);
  }

  public AccountDataBean login(String userID, String password) throws Exception, RemoteException {
    return (new TradeDirect(true)).login(userID, password);
  }
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.