Interface SceneSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing scene searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetSceneSearchRecord(Type sceneSearchRecordType) Gets the scene search record corresponding to the given scene search recordType.voidorderSceneResults(SceneSearchOrder sceneSearchOrder) Specify an ordering to the search results.voidsearchAmongScenes(IdList sceneIds) Execute this search among the given list of scenes.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
-
searchAmongScenes
Execute this search among the given list of scenes.- Parameters:
sceneIds- list of scenes- Throws:
NullArgumentException-sceneIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderSceneResults
Specify an ordering to the search results.- Parameters:
sceneSearchOrder- scene search order- Throws:
NullArgumentException-sceneSearchOrderisnullUnsupportedException-sceneSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getSceneSearchRecord
Gets the scene search record corresponding to the given scene search recordType. This method is used to retrieve an object implementing the requested record.- Parameters:
sceneSearchRecordType- a scene search record type- Returns:
- the scene search interface
- Throws:
NullArgumentException-sceneSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(sceneSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-