org.apache.geronimo.samples.daytrader.ejb
Interface LocalQuote

All Superinterfaces:
EJBLocalObject

public interface LocalQuote
extends EJBLocalObject


Method Summary
 void addToVolume(double quantity)
           
 double getChange()
           
 String getCompanyName()
           
 QuoteDataBean getDataBean()
           
 BigDecimal getHigh()
           
 BigDecimal getLow()
           
 BigDecimal getOpen()
           
 Collection getOrders()
           
 BigDecimal getPrice()
           
 String getSymbol()
           
 double getTotalVolume()
           
 double getVolume()
           
 void setCompanyName(String companyName)
           
 void setOrders(Collection orders)
           
 void setSymbol(String symbol)
           
 String toString()
           
 void updatePrice(BigDecimal price)
           
 void updatePrice(double price)
           
 
Methods inherited from interface javax.ejb.EJBLocalObject
getEJBLocalHome, getPrimaryKey, isIdentical, remove
 

Method Detail

getSymbol

String getSymbol()

setSymbol

void setSymbol(String symbol)

getCompanyName

String getCompanyName()

setCompanyName

void setCompanyName(String companyName)

getVolume

double getVolume()

getPrice

BigDecimal getPrice()

getOpen

BigDecimal getOpen()

getLow

BigDecimal getLow()

getHigh

BigDecimal getHigh()

getChange

double getChange()

getOrders

Collection getOrders()

setOrders

void setOrders(Collection orders)

updatePrice

void updatePrice(BigDecimal price)

updatePrice

void updatePrice(double price)

addToVolume

void addToVolume(double quantity)

getTotalVolume

double getTotalVolume()
                      throws FinderException
Throws:
FinderException

getDataBean

QuoteDataBean getDataBean()

toString

String toString()
Overrides:
toString in class Object


Copyright © 2005-2007 Apache Software Foundation. All Rights Reserved.