|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.ace.mws.mam.FundStatement
class FundStatement
An fund statement is a report generated from Moab Accounting Manager fund, allocation, and transaction data. It contains fields detailing the specific time period covered, the starting and ending balances, the total of the transactions, and fund and transaction details.
Field Summary | |
---|---|
private BigDecimal |
endBalance
The balance of the funds at the endTime of the statement. |
private Date |
endTime
The ending time that the statement covers. |
private Set |
funds
(Fund collection) The funds that this statement covers. |
private Date |
generationTime
The date that the statement report was generated. |
private Long |
id
|
private BigDecimal |
startBalance
The balance of the funds at the startTime of the statement. |
private Date |
startTime
The starting time that the statement covers. |
private BigDecimal |
totalCredits
The total number of credits that occurred during the time period that the statement covers. |
private BigDecimal |
totalDebits
The total number of debits that occurred during the time period that the statement covers. |
private Set |
transactions
(FundTransaction collection) Details of each specific transaction which occurred during the time period that this statement covers. |
Constructor Summary | |
FundStatement()
|
Method Summary | |
---|---|
BigDecimal
|
getEndBalance()
The balance of the funds at the endTime of the statement. |
Date
|
getEndTime()
The ending time that the statement covers. |
Set
|
getFunds()
(Fund collection) The funds that this statement covers. |
Date
|
getGenerationTime()
The date that the statement report was generated. |
Long
|
getId()
|
BigDecimal
|
getStartBalance()
The balance of the funds at the startTime of the statement. |
Date
|
getStartTime()
The starting time that the statement covers. |
BigDecimal
|
getTotalCredits()
The total number of credits that occurred during the time period that the statement covers. |
BigDecimal
|
getTotalDebits()
The total number of debits that occurred during the time period that the statement covers. |
Set
|
getTransactions()
(FundTransaction collection) Details of each specific transaction which occurred during the time period that this statement covers. |
void
|
setEndBalance(BigDecimal endBalance)
The balance of the funds at the endTime of the statement. |
void
|
setEndTime(Date endTime)
The ending time that the statement covers. |
void
|
setFunds(Set funds)
(Fund collection) The funds that this statement covers. |
void
|
setGenerationTime(Date generationTime)
The date that the statement report was generated. |
void
|
setId(Long id)
|
void
|
setStartBalance(BigDecimal startBalance)
The balance of the funds at the startTime of the statement. |
void
|
setStartTime(Date startTime)
The starting time that the statement covers. |
void
|
setTotalCredits(BigDecimal totalCredits)
The total number of credits that occurred during the time period that the statement covers. |
void
|
setTotalDebits(BigDecimal totalDebits)
The total number of debits that occurred during the time period that the statement covers. |
void
|
setTransactions(Set transactions)
(FundTransaction collection) Details of each specific transaction which occurred during the time period that this statement covers. |
String
|
toString()
|
Methods inherited from class Object | |
---|---|
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
Field Detail |
---|
private BigDecimal endBalance
private Date endTime
private Set funds
private Date generationTime
private Long id
private BigDecimal startBalance
private Date startTime
private BigDecimal totalCredits
private BigDecimal totalDebits
private Set transactions
Constructor Detail |
---|
FundStatement()
Method Detail |
---|
BigDecimal getEndBalance()
Date getEndTime()
Set getFunds()
Date getGenerationTime()
Long getId()
BigDecimal getStartBalance()
Date getStartTime()
BigDecimal getTotalCredits()
BigDecimal getTotalDebits()
Set getTransactions()
void setEndBalance(BigDecimal endBalance)
void setEndTime(Date endTime)
void setFunds(Set funds)
void setGenerationTime(Date generationTime)
void setId(Long id)
void setStartBalance(BigDecimal startBalance)
void setStartTime(Date startTime)
void setTotalCredits(BigDecimal totalCredits)
void setTotalDebits(BigDecimal totalDebits)
void setTransactions(Set transactions)
String toString()
Groovy Documentation