Interface AwardEntrySearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing award entry searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetAwardEntrySearchRecord(Type awardEntrySearchRecordType) Gets the award entry search record corresponding to the given award entry search recordType.This method is used to retrieve an object implementing the requested record.voidorderAwardEntryResults(AwardEntrySearchOrder awardEntrySearchOrder) Specify an ordering to the search results.voidsearchAmongAwardEntries(IdList awardEntryIds) Execute this search among the given list of award entries.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
-
searchAmongAwardEntries
Execute this search among the given list of award entries.- Parameters:
awardEntryIds- list of award entryIds- Throws:
NullArgumentException-awardEntryIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderAwardEntryResults
Specify an ordering to the search results.- Parameters:
awardEntrySearchOrder- award entry search order- Throws:
NullArgumentException-awardEntrySearchOrderisnullUnsupportedException-awardEntrySearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getAwardEntrySearchRecord
AwardEntrySearchRecord getAwardEntrySearchRecord(Type awardEntrySearchRecordType) throws OperationFailedException Gets the award entry search record corresponding to the given award entry search recordType.This method is used to retrieve an object implementing the requested record.- Parameters:
awardEntrySearchRecordType- an award entry search record type- Returns:
- the award entry search record
- Throws:
NullArgumentException-awardEntrySearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(awardEntrySearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-