Package org.kuali.rice.ksb.messaging.dao
Interface MessageQueueDAO
- All Known Implementing Classes:
MessageQueueDaoJpa
public interface MessageQueueDAO
-
Method Summary
Modifier and TypeMethodDescriptionfindAll(int maxRows) findByRouteQueueId(Long routeQueueId) findByValues(Map<String, String> criteriaValues, int maxRows) Finds the persisted messages that match the values passed into the criteriaValues Map, with an EqualTo criteria for each.getNextDocuments(Integer maxDocuments) voidremove(PersistedMessageBO routeQueue) save(PersistedMessageBO routeQueue)
-
Method Details
-
remove
-
save
-
findByRouteQueueId
-
findAll
-
getNextDocuments
-
findByValues
Finds the persisted messages that match the values passed into the criteriaValues Map, with an EqualTo criteria for each.- Parameters:
criteriaValues- A Map of Key/Value pairs, where the Key is a string holding the field name, and the Value is a string holding the value to match.- Returns:
- A populated (or empty) list containing the results of the search. If no matches are made, an empty list will be returned.
-