| org.kuali.module.gl.batch.poster.PostTransaction
All known Subclasses: org.kuali.module.gl.batch.poster.impl.PostEncumbrance, org.kuali.module.gl.batch.poster.impl.PostGlEntry, org.kuali.module.gl.batch.poster.impl.PostReversal, org.kuali.module.gl.batch.poster.impl.PostGlAccountBalance, org.kuali.module.gl.batch.poster.impl.PostBalance, org.kuali.module.labor.batch.poster.impl.LaborLedgerBalancePoster, org.kuali.module.gl.batch.poster.impl.PostExpenditureTransaction, org.kuali.module.labor.batch.poster.impl.LaborLedgerEntryPoster, org.kuali.module.gl.batch.poster.impl.PostSufficientFundBalances, org.kuali.module.labor.batch.poster.impl.LaborGLLedgerEntryPoster,
PostTransaction | public interface PostTransaction (Code) | | An interface that delcares the methods that the Poster needs to post a transaction.
|
Method Summary | |
public String | getDestinationName() | public String | post(Transaction t, int mode, Date postDate) Post a single transaction to a single destination.
Parameters: t - Transaction to post Parameters: mode - PosterService.MODE_ENTRIES or PosterService.MODE_REVERSAL Parameters: postDate - post date/time The letter I if a row was inserted, U updated, D deleted. |
getDestinationName | public String getDestinationName()(Code) | | The name of the destination for the post (ie, the database table name where resultant records will be posted)
name |
post | public String post(Transaction t, int mode, Date postDate)(Code) | | Post a single transaction to a single destination.
Parameters: t - Transaction to post Parameters: mode - PosterService.MODE_ENTRIES or PosterService.MODE_REVERSAL Parameters: postDate - post date/time The letter I if a row was inserted, U updated, D deleted. The string can have multiple codes. |
|
|