com.parsec.ejbs.share
Class CurrentShareStateEJB

java.lang.Object
  |
  +--com.parsec.ejbs.share.CurrentShareStateEJB
All Implemented Interfaces:
javax.ejb.EnterpriseBean, javax.ejb.EntityBean, java.io.Serializable

public class CurrentShareStateEJB
extends java.lang.Object
implements javax.ejb.EntityBean

See Also:
Serialized Form

Constructor Summary
CurrentShareStateEJB()
           
 
Method Summary
 void ejbActivate()
           
 java.lang.String ejbCreate(java.lang.String shareId, float currentPrice, float todaysHigh, float todaysLow)
           
 java.lang.String ejbFindByPrimaryKey(java.lang.String primaryKey)
           
 void ejbLoad()
           
 void ejbPassivate()
           
 void ejbPostCreate(java.lang.String shareId, float currentPrice, float todaysHigh, float todaysLow)
           
 void ejbRemove()
           
 void ejbStore()
           
 float getCurrentPrice()
           
 java.lang.String getShareId()
           
 float getTodaysHigh()
           
 float getTodaysLow()
           
 void setCurrentPrice(float a)
           
 void setEntityContext(javax.ejb.EntityContext context)
           
 void setShareId(java.lang.String a)
           
 void setTodaysHigh(float a)
           
 void setTodaysLow(float a)
           
 void unsetEntityContext()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CurrentShareStateEJB

public CurrentShareStateEJB()
Method Detail

getShareId

public java.lang.String getShareId()

getCurrentPrice

public float getCurrentPrice()

getTodaysHigh

public float getTodaysHigh()

getTodaysLow

public float getTodaysLow()

setShareId

public void setShareId(java.lang.String a)

setCurrentPrice

public void setCurrentPrice(float a)

setTodaysHigh

public void setTodaysHigh(float a)

setTodaysLow

public void setTodaysLow(float a)

ejbCreate

public java.lang.String ejbCreate(java.lang.String shareId,
                                  float currentPrice,
                                  float todaysHigh,
                                  float todaysLow)
                           throws javax.ejb.CreateException

ejbFindByPrimaryKey

public java.lang.String ejbFindByPrimaryKey(java.lang.String primaryKey)
                                     throws javax.ejb.FinderException

ejbRemove

public void ejbRemove()
Specified by:
ejbRemove in interface javax.ejb.EntityBean

setEntityContext

public void setEntityContext(javax.ejb.EntityContext context)
Specified by:
setEntityContext in interface javax.ejb.EntityBean

unsetEntityContext

public void unsetEntityContext()
Specified by:
unsetEntityContext in interface javax.ejb.EntityBean

ejbActivate

public void ejbActivate()
Specified by:
ejbActivate in interface javax.ejb.EntityBean

ejbPassivate

public void ejbPassivate()
Specified by:
ejbPassivate in interface javax.ejb.EntityBean

ejbLoad

public void ejbLoad()
Specified by:
ejbLoad in interface javax.ejb.EntityBean

ejbStore

public void ejbStore()
Specified by:
ejbStore in interface javax.ejb.EntityBean

ejbPostCreate

public void ejbPostCreate(java.lang.String shareId,
                          float currentPrice,
                          float todaysHigh,
                          float todaysLow)