Groovy Documentation

com.ace.mws.mam
[Groovy] Class FundTransactionSummary

java.lang.Object
  com.ace.mws.mam.FundTransactionSummary

class FundTransactionSummary

Represents a Moab Accounting Manager transaction summary, which is a consolidated view of multiple transactions. The transactions are grouped by object and action, and a total count is given for the summary.

Authors:
bsaville


Field Summary
private String action

Action name for the transaction.

private BigDecimal amount

Amount of the transaction.

private Long count

The number of transactions in this grouping of object and action.

private Long id

private String object

Object's name associated with the transaction.

 
Constructor Summary
FundTransactionSummary()

 
Method Summary
String getAction()

Action name for the transaction.

BigDecimal getAmount()

Amount of the transaction.

Long getCount()

The number of transactions in this grouping of object and action.

Long getId()

String getObject()

Object's name associated with the transaction.

void setAction(String action)

Action name for the transaction.

void setAmount(BigDecimal amount)

Amount of the transaction.

void setCount(Long count)

The number of transactions in this grouping of object and action.

void setId(Long id)

void setObject(String object)

Object's name associated with the transaction.

String toString()

 
Methods inherited from class Object
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll
 

Field Detail

action

private String action
Action name for the transaction.


amount

private BigDecimal amount
Amount of the transaction. A positive or amount signifies a credit, while a negative or zero amount signifies a debit.


count

private Long count
The number of transactions in this grouping of object and action.


id

private Long id


object

private String object
Object's name associated with the transaction.


 
Constructor Detail

FundTransactionSummary

FundTransactionSummary()


 
Method Detail

getAction

String getAction()
Action name for the transaction.


getAmount

BigDecimal getAmount()
Amount of the transaction. A positive or amount signifies a credit, while a negative or zero amount signifies a debit.


getCount

Long getCount()
The number of transactions in this grouping of object and action.


getId

Long getId()


getObject

String getObject()
Object's name associated with the transaction.


setAction

void setAction(String action)
Action name for the transaction.


setAmount

void setAmount(BigDecimal amount)
Amount of the transaction. A positive or amount signifies a credit, while a negative or zero amount signifies a debit.


setCount

void setCount(Long count)
The number of transactions in this grouping of object and action.


setId

void setId(Long id)


setObject

void setObject(String object)
Object's name associated with the transaction.


toString

String toString()


 

Groovy Documentation