Uses of Class
org.restlet.Restlet

Packages that use Restlet
org.restlet Core classes of the API. 
org.restlet.util Utility classes and interfaces used in the rest of the API. 
 

Uses of Restlet in org.restlet
 

Subclasses of Restlet in org.restlet
 class Application
          Restlet that can be attached to one or more VirtualHosts.
 class Client
          Connector acting as a generic client.
 class Component
          Restlet managing a set of Connectors, VirtualHosts and Applications.
 class Connector
          Restlet enabling communication between Components.
 class Directory
          Finder mapping a directory of local resources.
 class Filter
          Restlet filtering calls before passing them to an attached Restlet.
 class Finder
          Restlet that can find the target handler that will effectively handle the call.
 class Guard
          Filter guarding the access to an attached Restlet.
 class Redirector
          Rewrites URIs then redirects the call or the client to a new destination.
 class Route
          Filter scoring the affinity of calls with the attached Restlet.
 class Router
          Restlet routing calls to one of the attached routes.
 class Server
          Connector acting as a generic server.
 class Transformer
          Filter that can transform XML representations by applying an XSLT transform sheet.
 class VirtualHost
          Router of calls from Server connectors to Restlets.
 

Methods in org.restlet that return Restlet
 Restlet Application.createRoot()
          Creates a root Restlet that will receive all incoming calls.
 Restlet Filter.getNext()
          Returns the next Restlet.
 Restlet Router.getNext(Request request, Response response)
          Returns the next Restlet if available.
 Restlet Application.getRoot()
          Returns the root Restlet.
 Restlet Server.getTarget()
          Returns the target Restlet.
 

Methods in org.restlet with parameters of type Restlet
 Route VirtualHost.attach(Restlet target)
          Attaches a target Restlet to this router with an empty URI pattern.
 Route Router.attach(Restlet target)
          Attaches a target Restlet to this router with an empty URI pattern.
 Route VirtualHost.attach(java.lang.String uriPattern, Restlet target)
          Attaches a target Restlet to this router based on a given URI pattern.
 Route Router.attach(java.lang.String uriPattern, Restlet target)
          Attaches a target Restlet to this router based on a given URI pattern.
 Route VirtualHost.attachDefault(Restlet defaultTarget)
          Attaches a Restlet to this router as the default target to invoke when no route matches.
 Route Router.attachDefault(Restlet defaultTarget)
          Attaches a Restlet to this router as the default target to invoke when no route matches.
protected  Route VirtualHost.createRoute(java.lang.String uriPattern, Restlet target)
           
protected  Route Router.createRoute(java.lang.String uriPattern, Restlet target)
          Creates a new route for the given URI pattern and target.
 void Router.detach(Restlet target)
          Detaches the target from this router.
 void Filter.setNext(Restlet next)
          Sets the next Restlet.
 void Application.setRoot(Restlet root)
          Sets the root Restlet.
 void Server.setTarget(Restlet target)
          Sets the target Restlet.
 

Constructors in org.restlet with parameters of type Restlet
Filter(Context context, Restlet next)
          Constructor.
Route(Restlet next)
          Constructor behaving as a simple extractor filter.
Route(Router router, java.lang.String uriTemplate, Restlet next)
          Constructor.
Route(Router router, Template template, Restlet next)
          Constructor.
Server(Context context, java.util.List<Protocol> protocols, int port, Restlet target)
          Constructor.
Server(Context context, java.util.List<Protocol> protocols, java.lang.String address, int port, Restlet target)
          Constructor.
Server(Context context, java.util.List<Protocol> protocols, java.lang.String address, int port, Restlet target, java.lang.String helperClass)
          Constructor.
Server(Context context, Protocol protocol, int port, Restlet target)
          Constructor.
Server(Context context, Protocol protocol, Restlet target)
          Constructor using the protocol's default port.
Server(Context context, Protocol protocol, java.lang.String address, int port, Restlet target)
          Constructor.
Server(java.util.List<Protocol> protocols, int port, Restlet target)
          Constructor.
Server(java.util.List<Protocol> protocols, java.lang.String address, int port, Restlet target)
          Constructor.
Server(Protocol protocol, int port, Restlet target)
          Constructor.
Server(Protocol protocol, Restlet target)
          Constructor using the protocol's default port.
Server(Protocol protocol, java.lang.String address, int port, Restlet target)
          Constructor.
Server(Protocol protocol, java.lang.String address, Restlet target)
          Constructor using the protocol's default port.
 

Uses of Restlet in org.restlet.util
 

Classes in org.restlet.util with type parameters of type Restlet
 class Helper<T extends Restlet>
          Delegate used by API classes to get support from the implementation classes.
 

Subclasses of Restlet in org.restlet.util
 class WrapperRestlet
          Restlet wrapper.
 

Methods in org.restlet.util that return Restlet
 Restlet ServerList.getTarget()
          Returns the target Restlet.
 

Methods in org.restlet.util with parameters of type Restlet
abstract  void Engine.fireContextChanged(Restlet restlet, Context context)
          Indicates that a Restlet's context has changed.
 void RouteList.removeAll(Restlet target)
          Removes all routes routing to a given target.
 void ServerList.setTarget(Restlet target)
          Sets the target Restlet.
 

Constructors in org.restlet.util with parameters of type Restlet
ServerList(Context context, Restlet target)
          Constructor.
WrapperRestlet(Restlet wrappedRestlet)
          Constructor.
 



Copyright © 2005-2008 Noelios Technologies.