edu.cmu.mse.vault.account
Interface AccountEntityLocal

All Superinterfaces:
javax.ejb.EJBLocalObject

public interface AccountEntityLocal
extends javax.ejb.EJBLocalObject

Remote interface for AccountEntity.


Method Summary
 java.lang.Integer getAccountId()
           
 java.lang.Double getBalance()
           
 CustomerEntityLocal getCustomer()
           
 java.util.Collection getTransactions()
           
 void setAccountId(java.lang.Integer accountId)
           
 void setBalance(java.lang.Double balance)
           
 void setCustomer(CustomerEntityLocal customer)
          Relationship methods
 void setTransactions(java.util.Collection transactions)
           
 
Methods inherited from interface javax.ejb.EJBLocalObject
getEJBLocalHome, getPrimaryKey, isIdentical, remove
 

Method Detail

setBalance

public void setBalance(java.lang.Double balance)

getBalance

public java.lang.Double getBalance()

setCustomer

public void setCustomer(CustomerEntityLocal customer)
Relationship methods


getCustomer

public CustomerEntityLocal getCustomer()

setAccountId

public void setAccountId(java.lang.Integer accountId)

getAccountId

public java.lang.Integer getAccountId()

getTransactions

public java.util.Collection getTransactions()

setTransactions

public void setTransactions(java.util.Collection transactions)