| org.kuali.module.financial.service.CheckService
All known Subclasses: org.kuali.module.financial.service.impl.CheckServiceImpl,
CheckService | public interface CheckService (Code) | | This service interface defines methods that a Check service implementation must provide.
|
Method Summary | |
public void | deleteCheck(Check check) Deletes the given Check. | public List | getByDocumentHeaderId(String documentHeaderId) Retrieves a list of checks for the given document id.
Parameters: documentHeaderId - The document header id. | public Check | save(Check check) Saves a check.
Parameters: check - The check to be saved. |
deleteCheck | public void deleteCheck(Check check)(Code) | | Deletes the given Check.
Parameters: check - The check to be deleted. |
getByDocumentHeaderId | public List getByDocumentHeaderId(String documentHeaderId)(Code) | | Retrieves a list of checks for the given document id.
Parameters: documentHeaderId - The document header id. A list of Check instances associated with the doc header id provided. |
save | public Check save(Check check)(Code) | | Saves a check.
Parameters: check - The check to be saved. The saved Check instance. |
|
|