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 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 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 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.


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.


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.


setId

void setId(Long id)


setObject

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


toString

String toString()


 

Groovy Documentation