Interface TodoProducerSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing todo producer searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetTodoProducerSearchRecord(Type todoProducerSearchRecordType) Gets the todo producer search record corresponding to the given todo producer search recordType.This method is used to retrieve an object implementing the requested record.voidorderTodoProducerResults(TodoProducerSearchOrder todoProducerSearchOrder) Specify an ordering to the search results.voidsearchAmongTodoProducers(IdList todoProducerIds) Execute this search among the given list of todo producers.Methods inherited from interface Extensible
getRecordTypes, hasRecordTypeModifier and TypeMethodDescriptionGets the record types available in this object.booleanhasRecordType(Type recordType) Tests if this object supports the given recordType.Methods inherited from interface OsidSearch
limitResultSetModifier and TypeMethodDescriptionvoidlimitResultSet(long start, long end) By default, searches return all matching results.
-
Method Details
-
searchAmongTodoProducers
Execute this search among the given list of todo producers.- Parameters:
todoProducerIds- list of todo producers- Throws:
NullArgumentException-todoProducerIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderTodoProducerResults
Specify an ordering to the search results.- Parameters:
todoProducerSearchOrder- todo producer search order- Throws:
NullArgumentException-todoProducerSearchOrderisnullUnsupportedException-todoProducerSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getTodoProducerSearchRecord
TodoProducerSearchRecord getTodoProducerSearchRecord(Type todoProducerSearchRecordType) throws OperationFailedException Gets the todo producer search record corresponding to the given todo producer search recordType.This method is used to retrieve an object implementing the requested record.- Parameters:
todoProducerSearchRecordType- a todo producer search record type- Returns:
- the todo producer search record
- Throws:
NullArgumentException-todoProducerSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(todoProducerSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-