public interface CatalogueSearch extends OsidSearch
The search interface for governing catalogue searches.
Modifier and Type | Method and Description |
---|---|
CatalogueSearchRecord |
getCatalogueSearchRecord(Type catalogueSearchRecordType)
Gets the record corresponding to the given catalogue search record
Type. |
void |
orderCatalogueResults(CatalogueSearchOrder catalogueSearchOrder)
Specify an ordering to the search results.
|
void |
searchAmongCatalogues(IdList catalogueIds)
Execute this search among the given list of catalogues.
|
limitResultSet
getRecordTypes, hasRecordType
void searchAmongCatalogues(IdList catalogueIds)
catalogueIds
- list of cataloguesNullArgumentException
- catalogueIds
is
null
mandatory
- This method must be implemented. void orderCatalogueResults(CatalogueSearchOrder catalogueSearchOrder)
catalogueSearchOrder
- catalogue search orderNullArgumentException
- catalogueSearchOrder
is null
UnsupportedException
- catalogueSearchOrder
is not of this servicemandatory
- This method must be implemented. CatalogueSearchRecord getCatalogueSearchRecord(Type catalogueSearchRecordType) throws OperationFailedException
Type.
This method is used to retrieve an object
implementing the requested record.catalogueSearchRecordType
- a catalogue search record typeNullArgumentException
-
catalogueSearchRecordType
is null
OperationFailedException
- unable to complete requestUnsupportedException
-
hasRecordType(catalogueSearchRecordType)
is
false
mandatory
- This method must be implemented.