Interface GradeSystemSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The interface for governing grade system searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetGradeSystemSearchRecord(Type gradeSystemSearchRecordType) Gets the grade system search record corresponding to the given grade system search recordType.This method is used to retrieve an object implementing the requested record.voidorderGradeSystemResults(GradeSystemSearchOrder gradeSystemSearchOrder) Specify an ordering to the search results.voidsearchAmongGradeSystems(IdList gradeSystemIds) Execute this search among the given list of grade systems.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
-
searchAmongGradeSystems
Execute this search among the given list of grade systems.- Parameters:
gradeSystemIds- list of grade systems- Throws:
NullArgumentException-gradeSystemIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderGradeSystemResults
Specify an ordering to the search results.- Parameters:
gradeSystemSearchOrder- grade system search order- Throws:
NullArgumentException-gradeSystemSearchOrderisnullUnsupportedException-gradeSystemSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getGradeSystemSearchRecord
GradeSystemSearchRecord getGradeSystemSearchRecord(Type gradeSystemSearchRecordType) throws OperationFailedException Gets the grade system search record corresponding to the given grade system search recordType.This method is used to retrieve an object implementing the requested record.- Parameters:
gradeSystemSearchRecordType- a grade system search record type- Returns:
- the grade system search record
- Throws:
NullArgumentException-gradeSystemSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(gradeSystemSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-