| org.kuali.module.gl.service.OriginEntryLiteService
All known Subclasses: org.kuali.module.gl.service.impl.OriginEntryLiteServiceImpl,
OriginEntryLiteService | public interface OriginEntryLiteService (Code) | | An interface declaring methods that interact with OriginEntryLite objects. OriginEntryLite objects
hold all the base data of OriginEntry, but don't have any references, which means that the O/RM layer
can read them much quicker. Most of the OriginEntryFull methods are covered by OriginEntryService.
|
delete | public void delete(OriginEntryLite entry)(Code) | | Deletes an origin entry record from the database
Parameters: entry - the entry to delete |
getEntriesByDocument | public Iterator<OriginEntryLite> getEntriesByDocument(OriginEntryGroup oeg, String documentNumber, String documentTypeCode, String originCode)(Code) | | Return all the entries for a specific document in a specific group
Parameters: oeg - the origin entry group to find entries in Parameters: documentNumber - the document number of origin entries to return Parameters: documentTypeCode - the document type code of origin entries to return Parameters: originCode - the origination code to return iterator to all qualifying entries |
save | public void save(OriginEntryLite entry)(Code) | | Saves an origin entry lite object to the database
Parameters: entry - an entry to save |
|
|