|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of QuoteDataBean in org.apache.geronimo.samples.daytrader |
---|
Methods in org.apache.geronimo.samples.daytrader that return QuoteDataBean | |
---|---|
QuoteDataBean |
TradeWSAction.createQuote(String symbol,
String companyName,
BigDecimal price)
|
QuoteDataBean |
TradeJPA.createQuote(String symbol,
String companyName,
BigDecimal price)
|
QuoteDataBean |
TradeAction.createQuote(String symbol,
String companyName,
BigDecimal price)
Given a market symbol, price, and details, create and return a new QuoteDataBean |
QuoteDataBean |
TradeWSServices.createQuote(String symbol,
String companyName,
BigDecimal price)
|
QuoteDataBean |
TradeServices.createQuote(String symbol,
String companyName,
BigDecimal price)
Given a market symbol, price, and details, create and return a new QuoteDataBean |
QuoteDataBean[] |
TradeWSAction.getAllQuotes()
|
QuoteDataBean[] |
TradeWSServices.getAllQuotes()
|
QuoteDataBean |
HoldingDataBean.getQuote()
Gets the quoteID |
QuoteDataBean |
OrderDataBean.getQuote()
|
QuoteDataBean |
TradeWSAction.getQuote(String symbol)
|
QuoteDataBean |
TradeJPA.getQuote(String symbol)
|
QuoteDataBean |
TradeAction.getQuote(String symbol)
Return a QuoteDataBean describing a current quote for the given
stock symbol |
QuoteDataBean |
TradeWSServices.getQuote(String symbol)
|
QuoteDataBean |
TradeServices.getQuote(String symbol)
Return a QuoteDataBean describing a current quote for the given stock symbol |
static QuoteDataBean |
QuoteDataBean.getRandomInstance()
|
QuoteDataBean[] |
MarketSummaryDataBeanWS.getTopGainers()
Gets the topGainers |
QuoteDataBean[] |
MarketSummaryDataBeanWS.getTopLosers()
Gets the topLosers |
QuoteDataBean |
TradeJPA.pingTwoPhase(String symbol)
This method provides a ping test for a 2-phase commit operation |
QuoteDataBean |
TradeWSAction.updateQuotePriceVolume(String symbol,
BigDecimal newPrice,
double sharesTraded)
|
QuoteDataBean |
TradeJPA.updateQuotePriceVolume(String symbol,
BigDecimal changeFactor,
double sharesTraded)
|
QuoteDataBean |
TradeAction.updateQuotePriceVolume(String symbol,
BigDecimal changeFactor,
double sharesTraded)
Update the stock quote price for the specified stock symbol |
QuoteDataBean |
TradeWSServices.updateQuotePriceVolume(String symbol,
BigDecimal newPrice,
double sharesTraded)
|
QuoteDataBean |
TradeServices.updateQuotePriceVolume(String symbol,
BigDecimal newPrice,
double sharesTraded)
Update the stock quote price and volume for the specified stock symbol |
Methods in org.apache.geronimo.samples.daytrader with parameters of type QuoteDataBean | |
---|---|
HoldingDataBean |
TradeJPA.createHolding(AccountDataBean account,
QuoteDataBean quote,
double quantity,
BigDecimal purchasePrice)
|
OrderDataBean |
TradeJPA.createOrder(AccountDataBean account,
QuoteDataBean quote,
HoldingDataBean holding,
String orderType,
double quantity)
|
void |
TradeJPA.publishQuotePriceChange(QuoteDataBean quoteData,
BigDecimal oldPrice,
BigDecimal changeFactor,
double sharesTraded)
|
void |
HoldingDataBean.setQuote(QuoteDataBean quote)
|
void |
OrderDataBean.setQuote(QuoteDataBean quote)
|
void |
MarketSummaryDataBeanWS.setTopGainers(QuoteDataBean[] topGainers)
Sets the topGainers |
void |
MarketSummaryDataBeanWS.setTopLosers(QuoteDataBean[] topLosers)
Sets the topLosers |
Constructors in org.apache.geronimo.samples.daytrader with parameters of type QuoteDataBean | |
---|---|
HoldingDataBean(double quantity,
BigDecimal purchasePrice,
Date purchaseDate,
AccountDataBean account,
QuoteDataBean quote)
|
|
MarketSummaryDataBeanWS(BigDecimal TSIA,
BigDecimal openTSIA,
double volume,
QuoteDataBean[] topGainers,
QuoteDataBean[] topLosers)
|
|
MarketSummaryDataBeanWS(BigDecimal TSIA,
BigDecimal openTSIA,
double volume,
QuoteDataBean[] topGainers,
QuoteDataBean[] topLosers)
|
|
OrderDataBean(String orderType,
String orderStatus,
Date openDate,
Date completionDate,
double quantity,
BigDecimal price,
BigDecimal orderFee,
AccountDataBean account,
QuoteDataBean quote,
HoldingDataBean holding)
|
Uses of QuoteDataBean in org.apache.geronimo.samples.daytrader.direct |
---|
Methods in org.apache.geronimo.samples.daytrader.direct that return QuoteDataBean | |
---|---|
QuoteDataBean |
TradeDirect.createQuote(String symbol,
String companyName,
BigDecimal price)
|
QuoteDataBean |
TradeDirect.getQuote(String symbol)
|
QuoteDataBean |
TradeDirect.updateQuotePriceVolume(String symbol,
BigDecimal changeFactor,
double sharesTraded)
|
QuoteDataBean |
TradeDirect.updateQuotePriceVolumeInt(String symbol,
BigDecimal changeFactor,
double sharesTraded,
boolean publishQuotePriceChange)
Update a quote's price and volume |
Uses of QuoteDataBean in org.apache.geronimo.samples.daytrader.ejb |
---|
Methods in org.apache.geronimo.samples.daytrader.ejb that return QuoteDataBean | |
---|---|
QuoteDataBean |
TradeBean.createQuote(String symbol,
String companyName,
BigDecimal price)
|
QuoteDataBean |
QuoteBean.getDataBean()
|
QuoteDataBean |
Quote.getDataBean()
|
QuoteDataBean |
LocalQuote.getDataBean()
|
QuoteDataBean |
TradeBean.getQuote(String symbol)
|
QuoteDataBean |
TradeBean.pingTwoPhase(String symbol)
This method provides a ping test for a 2-phase commit operation |
QuoteDataBean |
Trade.pingTwoPhase(String symbol)
This method provides a ping test for a 2-phase commit operation |
QuoteDataBean |
TradeBean.updateQuotePriceVolume(String symbol,
BigDecimal changeFactor,
double sharesTraded)
|
Methods in org.apache.geronimo.samples.daytrader.ejb with parameters of type QuoteDataBean | |
---|---|
void |
TradeBean.publishQuotePriceChange(QuoteDataBean quoteData,
BigDecimal oldPrice,
BigDecimal changeFactor,
double sharesTraded)
|
void |
Trade.publishQuotePriceChange(QuoteDataBean quoteData,
BigDecimal oldPrice,
BigDecimal changeFactor,
double sharesTraded)
Publish to the QuoteChange Message topic when a stock price and volume are updated This method is deployed as TXN REQUIRES NEW to avoid a 2-phase commit transaction across the DB update and MDB access (i.e. a failure to publish will not cause the stock update to fail |
Uses of QuoteDataBean in org.apache.geronimo.samples.daytrader.session |
---|
Methods in org.apache.geronimo.samples.daytrader.session that return QuoteDataBean | |
---|---|
QuoteDataBean |
TradeJDBCBean.createQuote(String symbol,
String companyName,
BigDecimal price)
|
QuoteDataBean |
TradeJDBCBean.getQuote(String symbol)
|
QuoteDataBean |
TradeJDBCBean.updateQuotePriceVolume(String symbol,
BigDecimal newPrice,
double sharesTraded)
|
Uses of QuoteDataBean in org.apache.geronimo.samples.daytrader.soap |
---|
Methods in org.apache.geronimo.samples.daytrader.soap that return QuoteDataBean | |
---|---|
QuoteDataBean |
TradeWebSoapProxy.createQuote(String symbol,
String companyName,
BigDecimal price)
|
QuoteDataBean |
TradeWebSoapProxy.getQuote(String symbol)
|
QuoteDataBean |
TradeWebSoapProxy.updateQuotePriceVolume(String symbol,
BigDecimal newPrice,
double sharesTraded)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |