Uses of Class
org.restlet.routing.Router
-
Packages that use Router Package Description org.restlet Core classes of the API.org.restlet.engine.component Supports Restlet components.org.restlet.ext.guice Integration with Google Guice @minor-version@.org.restlet.ext.wadl Support the WADL specification.org.restlet.routing Classes related to call routing. -
-
Uses of Router in org.restlet
Fields in org.restlet declared as Router Modifier and Type Field Description private RouterComponent. internalRouterThe private internal router that can be addressed via the RIAP client connector.Methods in org.restlet that return Router Modifier and Type Method Description RouterComponent. getInternalRouter()Returns the private internal router where Restlets like Applications can be attached.Methods in org.restlet with parameters of type Router Modifier and Type Method Description voidComponent. setInternalRouter(Router internalRouter)Sets the private internal router were Restlets like Applications can be attached. -
Uses of Router in org.restlet.engine.component
Subclasses of Router in org.restlet.engine.component Modifier and Type Class Description classClientRouterRouter that collects calls from all applications and dispatches them to the appropriate client connectors.classInternalRouterProvides the behavior of the internal router of a Component.classServerRouterRouter that collects calls from all server connectors and dispatches them to the appropriate host routers.Methods in org.restlet.engine.component with parameters of type Router Modifier and Type Method Description private TemplateRouteComponentXmlParser. attach(Router router, java.lang.String targetClassName, java.lang.String uriPattern, boolean defaultRoute)Deprecated.Creates a new route on a router according to a target class name and a URI pattern.private TemplateRouteComponentXmlParser. attachWithDescriptor(Router router, java.lang.String targetDescriptor, java.lang.String uriPattern, boolean defaultRoute)Deprecated.Creates a new route on a router according to a target descriptor and a URI pattern.private voidComponentXmlParser. parseRouter(Router router, org.w3c.dom.Node routerNode)Deprecated.Parse the attributes of a DOM node and update the given router.private voidComponentXmlParser. setAttach(Router router, org.w3c.dom.Node node)Deprecated.Attaches Restlet to a router.Constructors in org.restlet.engine.component with parameters of type Router Constructor Description ClientRoute(Router router, Client target)Constructor.HostRoute(Router router, VirtualHost target)Constructor. -
Uses of Router in org.restlet.ext.guice
Methods in org.restlet.ext.guice that return Router Modifier and Type Method Description RouterResourceInjectingApplication. newRouter()Returns a new instance ofRouterlinked to this application. -
Uses of Router in org.restlet.ext.wadl
Fields in org.restlet.ext.wadl declared as Router Modifier and Type Field Description private RouterWadlApplication. routerDeprecated.The router toServerResourceclasses.Methods in org.restlet.ext.wadl that return Router Modifier and Type Method Description private RouterWadlApplication. getNextRouter(Restlet current)Deprecated.Returns the next router available.RouterWadlApplication. getRouter()Deprecated.Returns the router where theServerResourceclasses created from the WADL description document are attached.Methods in org.restlet.ext.wadl with parameters of type Router Modifier and Type Method Description private voidWadlApplication. attachResource(ResourceInfo currentResource, ResourceInfo parentResource, Router router)Deprecated.Attaches a resource, as specified in a WADL document, to a specified router, then recursively attaches its child resources.protected FinderWadlApplication. createFinder(Router router, java.lang.String uriPattern, ResourceInfo resourceInfo)Deprecated.Creates a finder for the given resource info.private java.util.List<ResourceInfo>WadlApplication. getResourceInfos(ApplicationInfo applicationInfo, Router router, Request request, Response response)Deprecated.Completes the list of ResourceInfo instances for the given Router instance. -
Uses of Router in org.restlet.routing
Subclasses of Router in org.restlet.routing Modifier and Type Class Description classVirtualHostRouter of calls from Server connectors to Restlets.Fields in org.restlet.routing declared as Router Modifier and Type Field Description private RouterRoute. routerThe parent router.Methods in org.restlet.routing that return Router Modifier and Type Method Description RouterRoute. getRouter()Returns the parent router.Methods in org.restlet.routing with parameters of type Router Modifier and Type Method Description voidRoute. setRouter(Router router)Sets the parent router.Constructors in org.restlet.routing with parameters of type Router Constructor Description Route(Router router, Restlet next)Constructor.TemplateRoute(Router router, java.lang.String uriTemplate, Restlet next)Constructor.TemplateRoute(Router router, Template template, Restlet next)Constructor.
-