Interface SystemSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing system searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetSystemSearchRecord(Type systemSearchRecordType) Gets the system search record corresponding to the given system search recordType.voidorderSystemResults(SystemSearchOrder systemSearchOrder) Specify an ordering to the search results.voidsearchAmongSystems(IdList systemIds) Execute this search among the given list of 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
-
searchAmongSystems
Execute this search among the given list of systems.- Parameters:
systemIds- list of systems- Throws:
NullArgumentException-systemIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderSystemResults
Specify an ordering to the search results.- Parameters:
systemSearchOrder- system search order- Throws:
NullArgumentException-systemSearchOrderisnullUnsupportedException-systemSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getSystemSearchRecord
SystemSearchRecord getSystemSearchRecord(Type systemSearchRecordType) throws OperationFailedException Gets the system search record corresponding to the given system search recordType. This method is used to retrieve an object implementing the requested record.- Parameters:
systemSearchRecordType- a system search record type- Returns:
- the system search record
- Throws:
NullArgumentException-systemSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(systemSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-