|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.geronimo.samples.daytrader.soap.TradeWebSoapProxy
public class TradeWebSoapProxy
Constructor Summary | |
---|---|
TradeWebSoapProxy()
|
Method Summary | |
---|---|
OrderDataBean |
buy(String userID,
String symbol,
double quantity,
int orderProcessingMode)
Purchase a stock and create a new holding for the given user. |
void |
cancelOrder(Integer orderID,
boolean twoPhase)
Cancel the Order identefied by orderID The boolean twoPhase specifies to the server implementation whether or not the method is to participate in a global transaction |
OrderDataBean |
completeOrder(Integer orderID,
boolean twoPhase)
Complete the Order identefied by orderID Orders are submitted through JMS to a Trading agent and completed asynchronously. |
QuoteDataBean |
createQuote(String symbol,
String companyName,
BigDecimal price)
Given a market symbol, price, and details, create and return a new QuoteDataBean |
AccountDataBean |
getAccountData(String userID)
Return an AccountDataBean object for userID describing the account |
AccountProfileDataBean |
getAccountProfileData(String userID)
Return an AccountProfileDataBean for userID providing the users profile |
Collection |
getAllQuotes()
Return a Collection of QuoteDataBean
describing all current quotes |
Collection |
getClosedOrders(String userID)
Get the collection of completed orders for a given account that need to be alerted to the user |
HoldingDataBean |
getHolding(Integer holdingID)
Return a specific user stock holding identifed by the holdingID |
Collection |
getHoldings(String userID)
Return the portfolio of stock holdings for the specified customer as a collection of HoldingDataBeans |
MarketSummaryDataBean |
getMarketSummary()
Compute and return a snapshot of the current market conditions This includes the TSIA - an index of the price of the top 100 Trade stock quotes The openTSIA ( the index at the open) The volume of shares traded, Top Stocks gain and loss |
Collection |
getOrders(String userID)
Get the collection of all orders for a given account |
QuoteDataBean |
getQuote(String symbol)
Return a QuoteDataBean describing a current quote for the given stock symbol |
static org.apache.geronimo.samples.daytrader.client.ws.TradeWSServices |
getTrade()
|
AccountDataBean |
login(String userID,
String password)
Attempt to authenticate and login a user with the given password |
void |
logout(String userID)
Logout the given user |
void |
orderCompleted(String userID,
Integer orderID)
Signify an order has been completed for the given userID |
void |
queueOrder(Integer orderID,
boolean twoPhase)
Queue the Order identified by orderID to be processed Orders are submitted through JMS to a Trading Broker and completed asynchronously. |
AccountDataBean |
register(String userID,
String password,
String fullname,
String address,
String email,
String creditcard,
BigDecimal openBalance)
Register a new Trade customer. |
RunStatsDataBean |
resetTrade(boolean deleteAll)
Reset the TradeData by - removing all newly registered users by scenario servlet (i.e. users with userID's beginning with "ru:") * - removing all buy/sell order pairs - setting logoutCount = loginCount return statistics for this benchmark run |
OrderDataBean |
sell(String userID,
Integer holdingID,
int orderProcessingMode)
Sell a stock holding and removed the holding for the given user. |
AccountProfileDataBean |
updateAccountProfile(AccountProfileDataBean profileData)
Update userID's account profile information using the provided AccountProfileDataBean object |
QuoteDataBean |
updateQuotePriceVolume(String symbol,
BigDecimal newPrice,
double sharesTraded)
Update the stock quote price and volume for the specified stock symbol |
static void |
updateServicePort()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public TradeWebSoapProxy()
Method Detail |
---|
public static org.apache.geronimo.samples.daytrader.client.ws.TradeWSServices getTrade()
public static void updateServicePort()
public OrderDataBean buy(String userID, String symbol, double quantity, int orderProcessingMode) throws Exception, RemoteException
TradeServices
buy
in interface TradeServices
userID
- the customer requesting the stock purchasesymbol
- the symbol of the stock being purchasedquantity
- the quantity of shares to purchase
Exception
RemoteException
public void cancelOrder(Integer orderID, boolean twoPhase) throws Exception, RemoteException
TradeServices
cancelOrder
in interface TradeServices
orderID
- the Order to complete
Exception
RemoteException
public OrderDataBean completeOrder(Integer orderID, boolean twoPhase) throws Exception, RemoteException
TradeServices
completeOrder
in interface TradeServices
orderID
- the Order to complete
Exception
RemoteException
public QuoteDataBean createQuote(String symbol, String companyName, BigDecimal price) throws Exception, RemoteException
TradeServices
QuoteDataBean
createQuote
in interface TradeServices
symbol
- the symbol of the stockprice
- the current stock price
Exception
RemoteException
public AccountDataBean getAccountData(String userID) throws FinderException, RemoteException
TradeServices
getAccountData
in interface TradeServices
userID
- the account userID to lookup
FinderException
RemoteException
public AccountProfileDataBean getAccountProfileData(String userID) throws Exception, RemoteException
TradeServices
getAccountProfileData
in interface TradeServices
userID
- the account userID to lookup
Exception
RemoteException
public Collection getAllQuotes() throws Exception, RemoteException
TradeServices
Collection
of QuoteDataBean
describing all current quotes
getAllQuotes
in interface TradeServices
Exception
RemoteException
public Collection getClosedOrders(String userID) throws Exception, RemoteException
TradeServices
getClosedOrders
in interface TradeServices
userID
- the customer account to retrieve orders for
Exception
RemoteException
public HoldingDataBean getHolding(Integer holdingID) throws Exception, RemoteException
TradeServices
getHolding
in interface TradeServices
holdingID
- the holdingID to return
Exception
RemoteException
public Collection getHoldings(String userID) throws Exception, RemoteException
TradeServices
getHoldings
in interface TradeServices
userID
- the customer requesting the portfolio
Exception
RemoteException
public MarketSummaryDataBean getMarketSummary() throws Exception, RemoteException
TradeServices
getMarketSummary
in interface TradeServices
Exception
RemoteException
public Collection getOrders(String userID) throws Exception, RemoteException
TradeServices
getOrders
in interface TradeServices
userID
- the customer account to retrieve orders for
Exception
RemoteException
public QuoteDataBean getQuote(String symbol) throws Exception, RemoteException
TradeServices
QuoteDataBean
describing a current quote for the given stock symbol
getQuote
in interface TradeServices
symbol
- the stock symbol to retrieve the current Quote
Exception
RemoteException
public AccountDataBean login(String userID, String password) throws Exception, RemoteException
TradeServices
login
in interface TradeServices
userID
- the customer to loginpassword
- the password entered by the customer for authentication
Exception
RemoteException
public void logout(String userID) throws Exception, RemoteException
TradeServices
logout
in interface TradeServices
userID
- the customer to logout
Exception
RemoteException
public void orderCompleted(String userID, Integer orderID) throws Exception, RemoteException
TradeServices
orderCompleted
in interface TradeServices
userID
- the user for which an order has completedorderID
- the order which has completed
Exception
RemoteException
public void queueOrder(Integer orderID, boolean twoPhase) throws Exception, RemoteException
TradeServices
queueOrder
in interface TradeServices
orderID
- the Order being queued for processing
Exception
RemoteException
public AccountDataBean register(String userID, String password, String fullname, String address, String email, String creditcard, BigDecimal openBalance) throws Exception, RemoteException
TradeServices
register
in interface TradeServices
userID
- the new customer to registerpassword
- the customers passwordfullname
- the customers fullnameaddress
- the customers street addressemail
- the customers email addresscreditcard
- the customers creditcard number
Exception
RemoteException
public RunStatsDataBean resetTrade(boolean deleteAll) throws Exception, RemoteException
TradeServices
resetTrade
in interface TradeServices
Exception
RemoteException
public OrderDataBean sell(String userID, Integer holdingID, int orderProcessingMode) throws Exception, RemoteException
TradeServices
sell
in interface TradeServices
userID
- the customer requesting the sellholdingID
- the users holding to be sold
Exception
RemoteException
public AccountProfileDataBean updateAccountProfile(AccountProfileDataBean profileData) throws Exception, RemoteException
TradeServices
updateAccountProfile
in interface TradeServices
Exception
RemoteException
public QuoteDataBean updateQuotePriceVolume(String symbol, BigDecimal newPrice, double sharesTraded) throws Exception, RemoteException
TradeServices
updateQuotePriceVolume
in interface TradeServices
symbol
- for stock quote to update
Exception
RemoteException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |