| org.kuali.kfs.rule.UpdateAccountingLineRule
All known Subclasses: org.kuali.core.service.mock.MockRule,
UpdateAccountingLineRule | public interface UpdateAccountingLineRule extends AccountingLineRule(Code) | | Defines a rule which gets invoked immediately before an accounting line is updated within a document.
|
Method Summary | |
public boolean | processUpdateAccountingLineBusinessRules(F financialDocument, AccountingLine originalAccountingLine, AccountingLine updatedAccountingLine) This method should be leveraged by a transactional document, when the business rules that need to be implemented do not fit
into any of the other finer grained business rule checking methods that are defined in this interface. |
processUpdateAccountingLineBusinessRules | public boolean processUpdateAccountingLineBusinessRules(F financialDocument, AccountingLine originalAccountingLine, AccountingLine updatedAccountingLine)(Code) | | This method should be leveraged by a transactional document, when the business rules that need to be implemented do not fit
into any of the other finer grained business rule checking methods that are defined in this interface.
Parameters: financialDocument - Parameters: originalAccountingLine - Parameters: updatedAccountingLine - true if the business rules pass, false otherwise. |
|
|