org.restlet |
|
Java Source File Name | Type | Comment |
Application.java | Class | Restlet that can be attached to one or more VirtualHosts. |
Client.java | Class | Connector acting as a generic client. |
Component.java | Class | Restlet managing a set of Connectors, VirtualHosts and Applications.
Applications are expected to be directly attached to VirtualHosts. |
Connector.java | Class | Restlet enabling communication between Components. |
Context.java | Class | Contextual data and services provided to a Restlet. |
Directory.java | Class | Finder mapping a directory of local resources. |
Filter.java | Class | Restlet filtering calls before passing them to an attached Restlet. |
Finder.java | Class | Restlet that can find the target resource that will concretely handle a call.
Based on a given resource class, it is also capable of instantiating the
resource with the call's context, request and response without requiring the
usage of a subclass. |
Guard.java | Class | Filter guarding the access to an attached Restlet. |
Redirector.java | Class | Rewrites URIs then redirects the call or the client to a new destination. |
Restlet.java | Class | Uniform class that provides a context and life cycle support. |
Route.java | Class | Filter scoring the affinity of calls with the attached Restlet. |
Router.java | Class | Restlet routing calls to one of the attached routes. |
Server.java | Class | Connector acting as a generic server. |
Transformer.java | Class | Filter that can transform XML representations by applying an XSLT transform
sheet. |
Uniform.java | Class | Base class exposing the uniform REST interface. |
VirtualHost.java | Class | Router of calls from Server connectors to Restlets. |