Interface AssetContentSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing asset content searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetAssetContentSearchRecord(Type assetContentSearchRecordType) Gets the asset content search record corresponding to the given asset content search recordType.This method is used to retrieve an object implementing the requested record.voidorderAssetContentResults(AssetContentSearchOrder assetContentSearchOrder) Specify an ordering to the search results.voidsearchAmongAssetContents(IdList assetContentIds) Execute this search among the given list of asset contents.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
-
searchAmongAssetContents
Execute this search among the given list of asset contents.- Parameters:
assetContentIds- list of asset contents- Throws:
NullArgumentException-assetContentIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderAssetContentResults
Specify an ordering to the search results.- Parameters:
assetContentSearchOrder- asset content search order- Throws:
NullArgumentException-assetContentSearchOrderisnullUnsupportedException-assetContentSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getAssetContentSearchRecord
AssetContentSearchRecord getAssetContentSearchRecord(Type assetContentSearchRecordType) throws OperationFailedException Gets the asset content search record corresponding to the given asset content search recordType.This method is used to retrieve an object implementing the requested record.- Parameters:
assetContentSearchRecordType- an asset content search record type- Returns:
- the asset content search record
- Throws:
NullArgumentException-assetContentSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(assetContentSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-