Interface ConferralSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing conferral searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetConferralSearchRecord(Type conferralSearchRecordType) Gets the conferral search record corresponding to the given conferral search recordType.voidorderConferralResults(ConferralSearchOrder conferralSearchOrder) Specify an ordering to the search results.voidsearchAmongConferrals(IdList conferralIds) Execute this search among the given list of conferrals.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
-
searchAmongConferrals
Execute this search among the given list of conferrals.- Parameters:
conferralIds- list of conferrals- Throws:
NullArgumentException-conferralIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderConferralResults
Specify an ordering to the search results.- Parameters:
conferralSearchOrder- conferral search order- Throws:
NullArgumentException-conferralSearchOrderisnullUnsupportedException-conferralSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getConferralSearchRecord
ConferralSearchRecord getConferralSearchRecord(Type conferralSearchRecordType) throws OperationFailedException Gets the conferral search record corresponding to the given conferral search recordType. This method is used to retrieve an object implementing the requested record.- Parameters:
conferralSearchRecordType- a conferral search record type- Returns:
- the conferral search record
- Throws:
NullArgumentException-conferralSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(conferralSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-