Uses of Class
org.restlet.Restlet
-
Packages that use Restlet Package Description org.restlet Core classes of the API.org.restlet.resource Client and server resource classes.org.restlet.routing Classes related to call routing.org.restlet.security Classes related to security.org.restlet.util Various utility classes. -
-
Uses of Restlet in org.restlet
Subclasses of Restlet in org.restlet Modifier and Type Class Description classApplicationRestlet managing a coherent set of resources and services.classClientConnector acting as a generic client.classComponentclassConnectorRestlet enabling communication between Components.classServerConnector acting as a generic server.Methods in org.restlet that return Restlet Modifier and Type Method Description RestletApplication. createInboundRoot()Creates a inbound root Restlet that will receive all incoming calls.RestletApplication. createOutboundRoot()Creates a outbound root Restlet that will receive all outgoing calls from ClientResource.RestletContext. getClientDispatcher()Returns a request dispatcher to available client connectors.RestletApplication. getInboundRoot()Returns the inbound root Restlet.RestletServer. getNext()Returns the next Restlet.RestletApplication. getOutboundRoot()Returns the outbound root Restlet.RestletContext. getServerDispatcher()Returns a request dispatcher to component's virtual hosts.Methods in org.restlet with parameters of type Restlet Modifier and Type Method Description voidContext. setClientDispatcher(Restlet clientDispatcher)Sets the client dispatcher.voidApplication. setInboundRoot(Restlet inboundRoot)Sets the inbound root Restlet.voidServer. setNext(Restlet next)Sets the next Restlet.voidApplication. setOutboundRoot(Restlet outboundRoot)Sets the outbound root Restlet.voidContext. setServerDispatcher(Restlet serverDispatcher)Sets the server dispatcher.Constructors in org.restlet with parameters of type Restlet Constructor Description Server(java.util.List<Protocol> protocols, int port, Restlet next)Constructor.Server(java.util.List<Protocol> protocols, java.lang.String address, int port, Restlet next)Constructor.Server(Context context, java.util.List<Protocol> protocols, int port, Restlet next)Constructor.Server(Context context, java.util.List<Protocol> protocols, java.lang.String address, int port, Restlet next)Constructor.Server(Context context, java.util.List<Protocol> protocols, java.lang.String address, int port, Restlet next, java.lang.String helperClass)Constructor.Server(Context context, Protocol protocol, int port, Restlet next)Constructor.Server(Context context, Protocol protocol, java.lang.String address, int port, Restlet next)Constructor.Server(Context context, Protocol protocol, Restlet next)Constructor using the protocol's default port.Server(Protocol protocol, int port, Restlet next)Constructor.Server(Protocol protocol, java.lang.String address, int port, Restlet next)Constructor.Server(Protocol protocol, java.lang.String address, Restlet next)Constructor using the protocol's default port.Server(Protocol protocol, Restlet next)Constructor using the protocol's default port. -
Uses of Restlet in org.restlet.resource
Subclasses of Restlet in org.restlet.resource Modifier and Type Class Description classDirectoryFinder mapping a directory of local resources.classFinderRestlet that can find the target server resource that will effectively handle incoming calls. -
Uses of Restlet in org.restlet.routing
Subclasses of Restlet in org.restlet.routing Modifier and Type Class Description classExtractorFilter extracting attributes from a call.classFilterRestlet filtering calls before passing them to an attached Restlet.classRedirectorRewrites URIs then redirects the call or the client to a new destination.classRouteFilter scoring the affinity of calls with the attached Restlet.classRouterRestlet routing calls to one of the attached routes.classTemplateRouteFilter scoring the affinity of calls with the attached Restlet.classValidatorFilter validating attributes from a call.classVirtualHostRouter of calls from Server connectors to Restlets.Methods in org.restlet.routing that return Restlet Modifier and Type Method Description RestletFilter. getNext()Returns the next Restlet.RestletRouter. getNext(Request request, Response response)Returns the next Restlet if available.Methods in org.restlet.routing with parameters of type Restlet Modifier and Type Method Description TemplateRouteRouter. attach(java.lang.String pathTemplate, Restlet target)Attaches a target Restlet to this router based on a given URI pattern.TemplateRouteRouter. attach(java.lang.String pathTemplate, Restlet target, int matchingMode)Attaches a target Restlet to this router based on a given URI pattern.TemplateRouteRouter. attach(Restlet target)Attaches a target Restlet to this router with an empty URI pattern.TemplateRouteRouter. attach(Restlet target, int matchingMode)Attaches a target Restlet to this router with an empty URI pattern.TemplateRouteVirtualHost. attach(java.lang.String uriPattern, Restlet target)Attaches a target Restlet to this router based on a given URI pattern.TemplateRouteVirtualHost. attach(Restlet target)Attaches a target Restlet to this router with an empty URI pattern.TemplateRouteRouter. attachDefault(Restlet defaultTarget)Attaches a Restlet to this router as the default target to invoke when no route matches.TemplateRouteVirtualHost. attachDefault(Restlet defaultTarget)Attaches a Restlet to this router as the default target to invoke when no route matches.protected voidVirtualHost. checkContext(Restlet target)Checks the context and sets it if necessary.protected TemplateRouteRouter. createRoute(java.lang.String uriPattern, Restlet target)Creates a new route for the given URI pattern and target.protected TemplateRouteRouter. createRoute(java.lang.String uriPattern, Restlet target, int matchingMode)Creates a new route for the given URI pattern, target and matching mode.protected TemplateRouteVirtualHost. createRoute(java.lang.String uriPattern, Restlet target, int matchingMode)voidRouter. detach(Restlet target)Detaches the target from this router.protected voidRouter. doHandle(Restlet next, Request request, Response response)protected intRouter. getMatchingMode(Restlet target)Returns the matching mode for the target Restlet.protected voidRedirector. serverRedirect(Restlet next, Reference targetRef, Request request, Response response)Redirects a given call on the server-side to a next Restlet with a given target reference.voidFilter. setNext(Restlet next)Sets the next Restlet.Constructors in org.restlet.routing with parameters of type Restlet Constructor Description Extractor(Context context, Restlet next)Constructor.Filter(Context context, Restlet next)Constructor.Route(Restlet next)Constructor behaving as a simple extractor filter.Route(Router router, Restlet next)Constructor.TemplateRoute(Restlet next)Constructor behaving as a simple extractor filter.TemplateRoute(Router router, java.lang.String uriTemplate, Restlet next)Constructor.TemplateRoute(Router router, Template template, Restlet next)Constructor.Validator(Context context, Restlet next)Constructor. -
Uses of Restlet in org.restlet.security
Subclasses of Restlet in org.restlet.security Modifier and Type Class Description classAuthenticatorFilter authenticating the client sending the inbound request.classAuthorizerFilter authorizing inbound request.classCertificateAuthenticatorAuthenticator based on the SSL client certificate.classChallengeAuthenticatorAuthenticator based on a challenge scheme.classConfidentialAuthorizerAuthorizer allowing only confidential calls.classMethodAuthorizerAuthorizer based on authorized methods.classRoleAuthorizerAuthorizer based on authorized and forbidden roles. -
Uses of Restlet in org.restlet.util
Subclasses of Restlet in org.restlet.util Modifier and Type Class Description classWrapperRestletRestlet wrapper.Methods in org.restlet.util that return Restlet Modifier and Type Method Description RestletServerList. getNext()Returns the next Restlet.Methods in org.restlet.util with parameters of type Restlet Modifier and Type Method Description voidRouteList. removeAll(Restlet target)Removes all routes routing to a given target.voidServerList. setNext(Restlet next)Sets the next Restlet.Constructors in org.restlet.util with parameters of type Restlet Constructor Description ServerList(Context context, Restlet next)Constructor.WrapperRestlet(Restlet wrappedRestlet)Constructor.
-