| org.kuali.module.gl.service.GlCorrectionProcessOriginEntryService
All known Subclasses: org.kuali.module.gl.service.impl.GlCorrectionProcessOriginEntryServiceImpl,
GlCorrectionProcessOriginEntryService | public interface GlCorrectionProcessOriginEntryService (Code) | | Implementations of this interface are used to store a list of origin entries to be used by the GLCP. These persisted entries are
not stored permanently, but are stored for a period of time during the page views of a GLCP document. This is similar to a HTTP
session in that origin entries can be stored, but data can be cleared out after a specific lifetime.
|
persistAllEntries | public void persistAllEntries(String glcpSearchResuiltsSequenceNumber, List<OriginEntryFull> allEntries) throws Exception(Code) | | Persists the origin entries under a given sequence number. If entries are persisted again under the same sequence number,
then they will be overridden.
Parameters: glcpSearchResuiltsSequenceNumber - a sequence number Parameters: allEntries - a list of origin entries throws: Exception - thrown if anything goes wrong |
retrieveAllEntries | public List<OriginEntryFull> retrieveAllEntries(String glcpSearchResuiltsSequenceNumber) throws Exception(Code) | | Retrieves the origin entries stored under the given sequence number
Parameters: glcpSearchResuiltsSequenceNumber - a sequence number a list of origin entries, or null if no results are currently not in the system. throws: Exception - thrown if something goes wrong |
|
|