| |
|
| java.lang.Object org.kuali.kfs.service.impl.AccountingLineServiceImpl
AccountingLineServiceImpl | public class AccountingLineServiceImpl implements AccountingLineService(Code) | | This class is the service implementation for the AccountingLine structure. This has been created with polymorphism in mind so
that this service can be used for performing services for both the Source and Target AccountingLineBase structures. This is the
default, Kuali provided implementation.
|
AccountingLineServiceImpl | public AccountingLineServiceImpl()(Code) | | Default constructor
|
deleteAccountingLine | public void deleteAccountingLine(AccountingLine line)(Code) | | Deletes an accounting line from the DB.
Parameters: AccountingLine - The accounting line object to save - can be any object that extends AccountingLineBase (i.e. Source andTarget lines). |
getByDocumentHeaderId | public List getByDocumentHeaderId(Class clazz, String documentHeaderId)(Code) | | Retrieves an accounting line by its document header id. Will retrieve any object that extends AccountingLineBase (i.e. Source
and Target lines).
Parameters: Class - The specific child class type to be retrieved. Parameters: Long - |
save | public AccountingLine save(AccountingLine line)(Code) | | Saves an accounting line to the DB.
Parameters: AccountingLine - The accounting line object to save - can be any object that extends AccountingLineBase (i.e. Source andTarget lines). |
setAccountingLineDao | public void setAccountingLineDao(AccountingLineDao d)(Code) | | Sets the data access object
Parameters: d - |
|
|
|