public interface PositionSearch extends OsidSearch
The search interface for governing position searches.
Modifier and Type | Method and Description |
---|---|
PositionSearchRecord |
getPositionSearchRecord(Type positionSearchRecordType)
Gets the record corresponding to the given position search record
Type. |
void |
orderPositionResults(PositionSearchOrder positionSearchOrder)
Specify an ordering to the search results.
|
void |
searchAmongPositions(IdList positionIds)
Execute this search among the given list of positions.
|
limitResultSet
getRecordTypes, hasRecordType
void searchAmongPositions(IdList positionIds)
positionIds
- list of positionsNullArgumentException
- positionIds
is
null
mandatory
- This method must be implemented. void orderPositionResults(PositionSearchOrder positionSearchOrder)
positionSearchOrder
- position search orderNullArgumentException
- positionSearchOrder
is null
UnsupportedException
- positionSearchOrder
is not of this servicemandatory
- This method must be implemented. PositionSearchRecord getPositionSearchRecord(Type positionSearchRecordType) throws OperationFailedException
Type.
This method is used to retrieve an object
implementing the requested record.positionSearchRecordType
- a position search record typeNullArgumentException
- positionSearchRecordType
is null
OperationFailedException
- unable to complete requestUnsupportedException
-
hasRecordType(positionSearchRecordType)
is
false
mandatory
- This method must be implemented.