Uses of Class
org.restlet.routing.Route
-
Packages that use Route Package Description org.restlet.engine.component Supports Restlet components.org.restlet.ext.wadl Support the WADL specification.org.restlet.routing Classes related to call routing.org.restlet.util Various utility classes. -
-
Uses of Route in org.restlet.engine.component
Subclasses of Route in org.restlet.engine.component Modifier and Type Class Description classClientRouteRouter scorer based on a target client connector.classHostRouteRoute based on a target VirtualHost.Methods in org.restlet.engine.component with parameters of type Route Modifier and Type Method Description protected voidClientRouter. logRoute(Route route)protected voidServerRouter. logRoute(Route route) -
Uses of Route in org.restlet.ext.wadl
Methods in org.restlet.ext.wadl with parameters of type Route Modifier and Type Method Description private ResourceInfoWadlApplication. getResourceInfo(ApplicationInfo applicationInfo, Route route, java.lang.String basePath, Request request, Response response)Deprecated.Returns the WADL data about the given Route instance. -
Uses of Route in org.restlet.routing
Subclasses of Route in org.restlet.routing Modifier and Type Class Description classTemplateRouteFilter scoring the affinity of calls with the attached Restlet.Fields in org.restlet.routing declared as Route Modifier and Type Field Description private RouteRouter. defaultRouteThe default route tested if no other one was available.Methods in org.restlet.routing that return Route Modifier and Type Method Description protected RouteRouter. getCustom(Request request, Response response)Returns the matched route according to a custom algorithm.RouteRouter. getDefaultRoute()Returns the default route to test if no other one was available after retrying the maximum number of attempts.Methods in org.restlet.routing with parameters of type Route Modifier and Type Method Description protected voidRouter. logRoute(Route route)Logs the route selected.voidRouter. setDefaultRoute(Route defaultRoute)Sets the default route tested if no other one was available. -
Uses of Route in org.restlet.util
Methods in org.restlet.util that return Route Modifier and Type Method Description RouteRouteList. getBest(Request request, Response response, float requiredScore)Returns the best route match for a given call.RouteRouteList. getFirst(Request request, Response response, float requiredScore)Returns the first route match for a given call.RouteRouteList. getLast(Request request, Response response, float requiredScore)Returns the last route match for a given call.RouteRouteList. getNext(Request request, Response response, float requiredScore)Returns a next route match in a round robin mode for a given call.RouteRouteList. getRandom(Request request, Response response, float requiredScore)Returns a random route match for a given call.Constructor parameters in org.restlet.util with type arguments of type Route Constructor Description RouteList(java.util.List<Route> delegate)Constructor.
-