org.jboss.test.bank.ejb
Class AccountBean

java.lang.Object
  extended byorg.jboss.test.util.ejb.EnterpriseSupport (src) 
      extended byorg.jboss.test.util.ejb.EntitySupport (src) 
          extended byorg.jboss.test.bank.ejb.AccountBean
All Implemented Interfaces:
EnterpriseBean (src) , EntityBean (src) , java.io.Serializable
Direct Known Subclasses:
AccountBeanCMP (src)

public abstract class AccountBean
extends EntitySupport (src)

See Also:
Serialized Form

Field Summary
 
Fields inherited from class org.jboss.test.util.ejb.EntitySupport (src)
entityCtx
 
Constructor Summary
AccountBean()
           
 
Method Summary
 void deposit(float amount)
           
abstract  float getBalance()
           
abstract  void setBalance(float balance)
           
 void withdraw(float amount)
           
 
Methods inherited from class org.jboss.test.util.ejb.EntitySupport (src)
ejbActivate, ejbLoad, ejbPassivate, ejbRemove, ejbStore, setEntityContext, unsetEntityContext
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AccountBean

public AccountBean()
Method Detail

deposit

public void deposit(float amount)

withdraw

public void withdraw(float amount)

getBalance

public abstract float getBalance()

setBalance

public abstract void setBalance(float balance)