Interface WorkflowEventSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing workflow event searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetWorkflowEventSearchRecord(Type workflowEventSearchRecordType) Gets the workflow event search record corresponding to the given workflow event search recordType.This method is used to retrieve an object implementing the requested record.voidorderWorkflowEventResults(WorkflowEventSearchOrder workflowEventSearchOrder) Specify an ordering to the search results.voidsearchAmongWorkflowEvents(IdList workflowEventIds) Execute this search among the given list of workflow events.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
-
searchAmongWorkflowEvents
Execute this search among the given list of workflow events.- Parameters:
workflowEventIds- list of workflow events- Throws:
NullArgumentException-workflowEventIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderWorkflowEventResults
Specify an ordering to the search results.- Parameters:
workflowEventSearchOrder- workflow event search order- Throws:
NullArgumentException-workflowEventSearchOrderisnullUnsupportedException-workflowEventSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getWorkflowEventSearchRecord
WorkflowEventSearchRecord getWorkflowEventSearchRecord(Type workflowEventSearchRecordType) throws OperationFailedException Gets the workflow event search record corresponding to the given workflow event search recordType.This method is used to retrieve an object implementing the requested record.- Parameters:
workflowEventSearchRecordType- a workflow event search record type- Returns:
- the workflow event search record
- Throws:
NullArgumentException-workflowEventSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(workflowEventSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-