Interface ConvocationSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing convocation searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetConvocationSearchRecord(Type convocationSearchRecordType) Gets the convocation search record corresponding to the given convocation search recordType.This method is used to retrieve an object implementing the requested record.voidorderConvocationResults(ConvocationSearchOrder convocationSearchOrder) Specify an ordering to the search results.voidsearchAmongConvocations(IdList convocationIds) Execute this search among the given list of convocations.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
-
searchAmongConvocations
Execute this search among the given list of convocations.- Parameters:
convocationIds- list of convocations- Throws:
NullArgumentException-convocationIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderConvocationResults
Specify an ordering to the search results.- Parameters:
convocationSearchOrder- convocation search order- Throws:
NullArgumentException-convocationSearchOrderisnullUnsupportedException-convocationSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getConvocationSearchRecord
ConvocationSearchRecord getConvocationSearchRecord(Type convocationSearchRecordType) throws OperationFailedException Gets the convocation search record corresponding to the given convocation search recordType.This method is used to retrieve an object implementing the requested record.- Parameters:
convocationSearchRecordType- a convocation search record type- Returns:
- the convocation search record
- Throws:
NullArgumentException-convocationSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(convocationSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-