| org.kuali.kfs.rule.DeleteAccountingLineRule
All known Subclasses: org.kuali.core.service.mock.MockRule,
DeleteAccountingLineRule | public interface DeleteAccountingLineRule extends AccountingLineRule(Code) | | Defines a rule which gets invoked immediately before (and eventually after) an accounting line is deleted from a document.
|
Method Summary | |
public boolean | processDeleteAccountingLineBusinessRules(F financialDocument, AccountingLine accountingLine, boolean lineWasAlreadyDeletedFromDocument) 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. |
processDeleteAccountingLineBusinessRules | public boolean processDeleteAccountingLineBusinessRules(F financialDocument, AccountingLine accountingLine, boolean lineWasAlreadyDeletedFromDocument)(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: accountingLine - Parameters: financialDocument - Parameters: lineWasAlreadyDeletedFromDocument - True if the business rules pass, false otherwise. |
|
|