Interface FoundrySearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing foundry searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetFoundrySearchRecord(Type foundrySearchRecordType) Gets the foundry search record corresponding to the given foundry search recordType.voidorderFoundryResults(FoundrySearchOrder foundrySearchOrder) Specify an ordering to the search results.voidsearchAmongFoundries(IdList foundryIds) Execute this search among the given list of foundries.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
-
searchAmongFoundries
Execute this search among the given list of foundries.- Parameters:
foundryIds- list of foundries- Throws:
NullArgumentException-foundryIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderFoundryResults
Specify an ordering to the search results.- Parameters:
foundrySearchOrder- foundry search order- Throws:
NullArgumentException-foundrySearchOrderisnullUnsupportedException-foundrySearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getFoundrySearchRecord
FoundrySearchRecord getFoundrySearchRecord(Type foundrySearchRecordType) throws OperationFailedException Gets the foundry search record corresponding to the given foundry search recordType. This method is be used to retrieve an object implementing the requested record.- Parameters:
foundrySearchRecordType- a foundry search record type- Returns:
- the foundry search record
- Throws:
NullArgumentException-foundrySearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(foundrySearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-