Interface AddressBookSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing address book searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetAddressBookSearchRecord(Type addressBookSearchRecordType) Gets the address book search record corresponding to the given address book search recordType.This method is used to retrieve an object implementing the requested record interface.voidorderAddressBookResults(AddressBookSearchOrder addressBooksearchOrder) Specify an ordering to the search results.voidsearchAmongAddressBooks(IdList addressBookIds) Execute this search among the given list of address books.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
-
searchAmongAddressBooks
Execute this search among the given list of address books.- Parameters:
addressBookIds- list of address books- Throws:
NullArgumentException-addressBookIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderAddressBookResults
Specify an ordering to the search results.- Parameters:
addressBooksearchOrder- address book search order- Throws:
NullArgumentException-addressBooksearchOrderisnullUnsupportedException-addressBooksearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getAddressBookSearchRecord
AddressBookSearchRecord getAddressBookSearchRecord(Type addressBookSearchRecordType) throws OperationFailedException Gets the address book search record corresponding to the given address book search recordType.This method is used to retrieve an object implementing the requested record interface.- Parameters:
addressBookSearchRecordType- an address book search record type- Returns:
- the address book search record
- Throws:
NullArgumentException-addressBooksearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(addressBooksearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-