Interface FrontOfficeSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing front office searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetFrontOfficeSearchRecord(Type frontOfficeSearchRecordType) Gets the front office search record corresponding to the given front office search recordType.This method is used to retrieve an object implementing the requested record.voidorderFrontOfficeResults(FrontOfficeSearchOrder frontOfficeSearchOrder) Specify an ordering to the search results.voidsearchAmongFrontOffices(IdList frontOfficeIds) Execute this search among the given list of frontOffices.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
-
searchAmongFrontOffices
Execute this search among the given list of frontOffices.- Parameters:
frontOfficeIds- list of frontOffices- Throws:
NullArgumentException-frontOfficeIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderFrontOfficeResults
Specify an ordering to the search results.- Parameters:
frontOfficeSearchOrder- front office search order- Throws:
NullArgumentException-frontOfficeSearchOrderisnullUnsupportedException-frontOfficeSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getFrontOfficeSearchRecord
FrontOfficeSearchRecord getFrontOfficeSearchRecord(Type frontOfficeSearchRecordType) throws OperationFailedException Gets the front office search record corresponding to the given front office search recordType.This method is used to retrieve an object implementing the requested record.- Parameters:
frontOfficeSearchRecordType- a front office search record type- Returns:
- the front office search record
- Throws:
NullArgumentException-frontOfficeSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(frontOfficeSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-