public interface RouteSearch extends OsidSearch
The search interface for governing route searches.
Modifier and Type | Method and Description |
---|---|
RouteSearchRecord |
getRouteSearchRecord(Type routeSearchRecordType)
Gets the route search record corresponding to the given route search
record
Type. |
void |
orderRouteResults(RouteSearchOrder routeSearchOrder)
Specify an ordering to the search results.
|
void |
searchAmongRoutes(IdList routeIds)
Execute this search among the given list of routes.
|
limitResultSet
getRecordTypes, hasRecordType
void searchAmongRoutes(IdList routeIds)
routeIds
- list of routesNullArgumentException
- routeIds
is
null
mandatory
- This method must be implemented. void orderRouteResults(RouteSearchOrder routeSearchOrder)
routeSearchOrder
- route search orderNullArgumentException
- routeSearchOrder
is null
UnsupportedException
- routeSearchOrder
is not of this servicemandatory
- This method must be implemented. RouteSearchRecord getRouteSearchRecord(Type routeSearchRecordType) throws OperationFailedException
Type.
This method is used to retrieve an object
implementing the requested record.routeSearchRecordType
- a route search record typeNullArgumentException
- routeSearchRecordType
is null
OperationFailedException
- unable to complete requestUnsupportedException
-
hasRecordType(routeSearchRecordType)
is false
mandatory
- This method must be implemented.