Interface DeedSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing deed searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetDeedSearchRecord(Type deedSearchRecordType) Gets the search record corresponding to the given deed search recordType.voidorderDeedResults(DeedSearchOrder deedSearchOrder) Specify an ordering to the search results.voidsearchAmongDeeds(IdList DeedIds) Execute this search among the given list of deeds.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
-
searchAmongDeeds
Execute this search among the given list of deeds.- Parameters:
DeedIds- list of deeds- Throws:
NullArgumentException-DeedIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderDeedResults
Specify an ordering to the search results.- Parameters:
deedSearchOrder- a deed search order- Throws:
NullArgumentException-deedSearchOrderisnullUnsupportedException-deedSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getDeedSearchRecord
Gets the search record corresponding to the given deed search recordType. This method is used to retrieve an object implementing the requested record.- Parameters:
deedSearchRecordType- a deed search record type- Returns:
- the deed search record
- Throws:
NullArgumentException-deedSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(deedSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-