Package | Description |
---|---|
org.restlet.engine.component | |
org.restlet.routing |
Modifier and Type | Method and Description |
---|---|
TemplateRoute |
InternalRouter.attach(Restlet target) |
TemplateRoute |
InternalRouter.attach(String uriPattern,
Restlet target) |
TemplateRoute |
InternalRouter.attachDefault(Restlet defaultTarget) |
protected TemplateRoute |
InternalRouter.createRoute(String uriPattern,
Restlet target,
int matchingMode) |
Modifier and Type | Method and Description |
---|---|
TemplateRoute |
Router.attach(Restlet target)
Attaches a target Restlet to this router with an empty URI pattern.
|
TemplateRoute |
VirtualHost.attach(Restlet target)
Attaches a target Restlet to this router with an empty URI pattern.
|
TemplateRoute |
Router.attach(Restlet target,
int matchingMode)
Attaches a target Restlet to this router with an empty URI pattern.
|
TemplateRoute |
Router.attach(String pathTemplate,
Class<? extends ServerResource> targetClass)
Attaches a target Resource class to this router based on a given URI
pattern.
|
TemplateRoute |
Router.attach(String pathTemplate,
Class<? extends ServerResource> targetClass,
int matchingMode)
Attaches a target Resource class to this router based on a given URI
pattern.
|
TemplateRoute |
Router.attach(String pathTemplate,
Restlet target)
Attaches a target Restlet to this router based on a given URI pattern.
|
TemplateRoute |
VirtualHost.attach(String uriPattern,
Restlet target)
Attaches a target Restlet to this router based on a given URI pattern.
|
TemplateRoute |
Router.attach(String pathTemplate,
Restlet target,
int matchingMode)
Attaches a target Restlet to this router based on a given URI pattern.
|
TemplateRoute |
Router.attachDefault(Class<? extends ServerResource> defaultTargetClass)
Attaches a Resource class to this router as the default target to invoke
when no route matches.
|
TemplateRoute |
Router.attachDefault(Restlet defaultTarget)
Attaches a Restlet to this router as the default target to invoke when no
route matches.
|
TemplateRoute |
VirtualHost.attachDefault(Restlet defaultTarget)
Attaches a Restlet to this router as the default target to invoke when no
route matches.
|
protected TemplateRoute |
Router.createRoute(String uriPattern,
Restlet target)
Creates a new route for the given URI pattern and target.
|
protected TemplateRoute |
Router.createRoute(String uriPattern,
Restlet target,
int matchingMode)
Creates a new route for the given URI pattern, target and matching mode.
|
protected TemplateRoute |
VirtualHost.createRoute(String uriPattern,
Restlet target,
int matchingMode) |
TemplateRoute |
Router.redirectPermanent(String pathTemplate,
String targetUri)
Attaches a permanent redirection to this router based on a given URI
pattern.
|
TemplateRoute |
Router.redirectSeeOther(String pathTemplate,
String targetUri)
Attaches a redirection to this router based on a given URI pattern.
|
TemplateRoute |
Router.redirectTemporary(String pathTemplate,
String targetUri)
Attaches a temporary redirection to this router based on a given URI
pattern.
|
Copyright © 2005–2016. All rights reserved.