org.apache.aries.samples.ariestrader.api.persistence
Interface AccountDataBean


public interface AccountDataBean


Method Summary
 Integer getAccountID()
           
 BigDecimal getBalance()
           
 Date getCreationDate()
           
 Collection<HoldingDataBean> getHoldings()
           
 Date getLastLogin()
           
 int getLoginCount()
           
 int getLogoutCount()
           
 BigDecimal getOpenBalance()
           
 Collection<OrderDataBean> getOrders()
           
 AccountProfileDataBean getProfile()
           
 String getProfileID()
           
 void login(String password)
           
 void logout()
           
 void setAccountID(Integer accountID)
           
 void setBalance(BigDecimal balance)
           
 void setCreationDate(Date creationDate)
           
 void setLastLogin(Date lastLogin)
           
 void setLoginCount(int loginCount)
           
 void setLogoutCount(int logoutCount)
           
 void setOpenBalance(BigDecimal openBalance)
           
 void setProfile(AccountProfileDataBean profile)
           
 void setProfileID(String profileID)
           
 String toHTML()
           
 String toString()
           
 

Method Detail

toString

String toString()
Overrides:
toString in class Object

toHTML

String toHTML()

getAccountID

Integer getAccountID()

setAccountID

void setAccountID(Integer accountID)

getLoginCount

int getLoginCount()

setLoginCount

void setLoginCount(int loginCount)

getLogoutCount

int getLogoutCount()

setLogoutCount

void setLogoutCount(int logoutCount)

getLastLogin

Date getLastLogin()

setLastLogin

void setLastLogin(Date lastLogin)

getCreationDate

Date getCreationDate()

setCreationDate

void setCreationDate(Date creationDate)

getBalance

BigDecimal getBalance()

setBalance

void setBalance(BigDecimal balance)

getOpenBalance

BigDecimal getOpenBalance()

setOpenBalance

void setOpenBalance(BigDecimal openBalance)

getProfileID

String getProfileID()

setProfileID

void setProfileID(String profileID)

getOrders

Collection<OrderDataBean> getOrders()

getHoldings

Collection<HoldingDataBean> getHoldings()

getProfile

AccountProfileDataBean getProfile()

setProfile

void setProfile(AccountProfileDataBean profile)

login

void login(String password)

logout

void logout()


Copyright © 2009-2012 The Apache Software Foundation. All Rights Reserved.