Uses of Class
org.restlet.Restlet
-
Packages that use Restlet Package Description org.restlet Core classes of the API.org.restlet.engine Implementation of Restlet API.org.restlet.engine.application Supports Restlet applications.org.restlet.engine.component Supports Restlet components.org.restlet.engine.local Supports local connectors and resources.org.restlet.engine.log Supports the log service.org.restlet.engine.util General utilities.org.restlet.ext.atom Support for the Atom syndication and the AtomPub (Atom Publication Protocol) standards in their 1.0 version.org.restlet.ext.crypto Support for cryptography including Amazon S3 and Windows Azure client authentication.org.restlet.ext.guice Integration with Google Guice @minor-version@.org.restlet.ext.jaxrs Support for JAX-RS API.org.restlet.ext.jaxrs.internal.util org.restlet.ext.json Support for JSON representations.org.restlet.ext.velocity Integration with Apache Velocity @minor-version@.org.restlet.ext.wadl Support the WADL specification.org.restlet.ext.xml Support for XML and XSLT representations.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.Fields in org.restlet declared as Restlet Modifier and Type Field Description private RestletContext. clientDispatcherThe client dispatcher.private RestletApplication. inboundRootThe inbound root Restlet.private RestletServer. nextThe next Restlet.private RestletApplication. outboundRootThe outbound root Restlet.private RestletContext. serverDispatcherThe server dispatcher.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 private static voidRestlet. fireContextChanged(Restlet restlet, Context context)Indicates that a Restlet's context has changed.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.engine
Classes in org.restlet.engine with type parameters of type Restlet Modifier and Type Class Description classCompositeHelper<T extends Restlet>Chain helper serving as base class for Application and Component helpers.classRestletHelper<T extends Restlet>Delegate used by API classes to get support from the implementation classes.Fields in org.restlet.engine declared as Restlet Modifier and Type Field Description private TRestletHelper. helpedThe helped Restlet.private RestletCompositeHelper. inboundNextThe next Restlet after the inbound chain.private RestletCompositeHelper. outboundNextThe next Restlet after the outbound chain.Methods in org.restlet.engine that return Restlet Modifier and Type Method Description protected RestletCompositeHelper. getInboundNext()Returns the next Restlet in the inbound chain.RestletCompositeHelper. getOutboundNext()Returns the next Restlet in the outbound chain.Methods in org.restlet.engine with parameters of type Restlet Modifier and Type Method Description protected voidCompositeHelper. setInboundNext(Restlet next)Sets the next Restlet after the inbound chain.protected voidCompositeHelper. setOutboundNext(Restlet next)Sets the next Restlet after the outbound chain. -
Uses of Restlet in org.restlet.engine.application
Subclasses of Restlet in org.restlet.engine.application Modifier and Type Class Description classCorsFilterFilter that helps support CORS requests.classDecoderFilter uncompressing entities.classEncoderFilter compressing entities.classRangeFilterFilter that is in charge to check the responses to requests for partial content.classStatusFilterFilter associating a response entity based on the status.classTunnelFilterFilter tunneling browser calls into full REST calls.Constructors in org.restlet.engine.application with parameters of type Restlet Constructor Description CorsFilter(Context context, Restlet next)Constructor. -
Uses of Restlet in org.restlet.engine.component
Subclasses of Restlet in org.restlet.engine.component Modifier and Type Class Description classClientRouteRouter scorer based on a target client connector.classClientRouterRouter that collects calls from all applications and dispatches them to the appropriate client connectors.classComponentClientDispatcherComponent client dispatcher.classComponentServerDispatcherComponent server dispatcher.classHostRouteRoute based on a target VirtualHost.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 that return Restlet Modifier and Type Method Description RestletClientRouter. getNext(Request request, Response response)Methods in org.restlet.engine.component with parameters of type Restlet Modifier and Type Method Description TemplateRouteInternalRouter. attach(java.lang.String uriPattern, Restlet target)TemplateRouteInternalRouter. attach(Restlet target)TemplateRouteInternalRouter. attachDefault(Restlet defaultTarget)protected TemplateRouteInternalRouter. createRoute(java.lang.String uriPattern, Restlet target, int matchingMode)private voidComponentXmlParser. parseRestlet(Restlet restlet, org.w3c.dom.Node restletNode)Deprecated.Parse the attributes of a DOM node and update the given restlet. -
Uses of Restlet in org.restlet.engine.local
Fields in org.restlet.engine.local declared as Restlet Modifier and Type Field Description private RestletDirectoryServerResource. directoryClientDispatcherThe parent directory client dispatcher.Methods in org.restlet.engine.local that return Restlet Modifier and Type Method Description protected RestletDirectoryServerResource. getClientDispatcher()Returns a client dispatcher. -
Uses of Restlet in org.restlet.engine.log
Subclasses of Restlet in org.restlet.engine.log Modifier and Type Class Description classLogFilterFilter logging all calls after their handling by the target Restlet. -
Uses of Restlet in org.restlet.engine.util
Subclasses of Restlet in org.restlet.engine.util Modifier and Type Class Description classChildClientDispatcherClient dispatcher for a component child.classTemplateDispatcherFilter that resolves URI templates in the target resource URI reference using the request attributes.Fields in org.restlet.engine.util declared as Restlet Modifier and Type Field Description private RestletChildContext. childThe child delegate, typically an application.Methods in org.restlet.engine.util that return Restlet Modifier and Type Method Description RestletChildContext. getChild()Returns the child.Methods in org.restlet.engine.util with parameters of type Restlet Modifier and Type Method Description voidChildContext. setChild(Restlet child)Sets the child. -
Uses of Restlet in org.restlet.ext.atom
Fields in org.restlet.ext.atom declared as Restlet Modifier and Type Field Description private RestletService. clientDispatcherThe client HTTP dispatcher.Methods in org.restlet.ext.atom that return Restlet Modifier and Type Method Description RestletService. getClientDispatcher()Returns the client HTTP dispatcher.Constructors in org.restlet.ext.atom with parameters of type Restlet Constructor Description Service(Restlet clientDispatcher, java.lang.String serviceUri, Representation xmlService)Constructor. -
Uses of Restlet in org.restlet.ext.crypto
Subclasses of Restlet in org.restlet.ext.crypto Modifier and Type Class Description classAwsAuthenticatorAuthenticator supporting theChallengeScheme.HTTP_AWS_S3scheme.classCookieAuthenticatorChallenge authenticator based on browser cookies.classDigestAuthenticatorAuthenticator supporting the digest challenge authentication schemes. -
Uses of Restlet in org.restlet.ext.guice
Subclasses of Restlet in org.restlet.ext.guice Modifier and Type Class Description classResourceInjectingApplicationApplication with support for creating Router instances that arrange for member injection of resource instances.(package private) classRestletGuice.Module.KeyFinder(package private) classRestletGuice.Module.ServerResourceKeyFinder -
Uses of Restlet in org.restlet.ext.jaxrs
Subclasses of Restlet in org.restlet.ext.jaxrs Modifier and Type Class Description classJaxRsApplicationDeprecated.Will be removed in next minor release.classJaxRsRestletDeprecated.Will be removed in next minor release.Methods in org.restlet.ext.jaxrs that return Restlet Modifier and Type Method Description RestletJaxRsApplication. createInboundRoot()Deprecated.RestletJaxRsRestlet. getNoResMethodHandler()Deprecated.Returns the Restlet that is called, if no resource method class could be found.RestletJaxRsRestlet. getNoResourceClHandler()Deprecated.Returns the Restlet that is called, if no resource class could be found.RestletJaxRsRestlet. getNoRootResClHandler()Deprecated.Returns the Restlet that is called, if no root resource class could be found.Methods in org.restlet.ext.jaxrs with parameters of type Restlet Modifier and Type Method Description voidJaxRsRestlet. attachDefault(Restlet notMatchedRestlet)Deprecated.Sets the Restlet that is called, if no (root) resource class or method could be found.voidJaxRsRestlet. setNoResMethodHandler(Restlet noResMethodHandler)Deprecated.Sets the Restlet that will handle theRequests, if no resource method could be found.voidJaxRsRestlet. setNoResourceClHandler(Restlet noResourceClHandler)Deprecated.Sets the Restlet that will handle theRequests, if no resource class could be found.voidJaxRsRestlet. setNoRootResClHandler(Restlet noRootResClHandler)Deprecated.Sets the Restlet that is called, if no root resource class could be found. -
Uses of Restlet in org.restlet.ext.jaxrs.internal.util
Fields in org.restlet.ext.jaxrs.internal.util declared as Restlet Modifier and Type Field Description private RestletExceptionHandler. noResMethodHandlerDeprecated.private RestletExceptionHandler. noResourceClHandlerDeprecated.private RestletExceptionHandler. noRootResClHandlerDeprecated.Methods in org.restlet.ext.jaxrs.internal.util that return Restlet Modifier and Type Method Description RestletExceptionHandler. getNoResMethodHandler()Deprecated.Returns the Restlet that is called, if no resource method class could be found.RestletExceptionHandler. getNoResourceClHandler()Deprecated.Returns the Restlet that is called, if no resource class could be found.RestletExceptionHandler. getNoRootResClHandler()Deprecated.Returns the Restlet that is called, if no root resource class could be found.Methods in org.restlet.ext.jaxrs.internal.util with parameters of type Restlet Modifier and Type Method Description voidExceptionHandler. setNoResMethodHandler(Restlet noResMethodHandler)Deprecated.Sets the Restlet that will handle theRequests, if no resource method could be found.voidExceptionHandler. setNoResourceClHandler(Restlet noResourceClHandler)Deprecated.Sets the Restlet that will handle theRequests, if no resource class could be found.voidExceptionHandler. setNoRootResClHandler(Restlet noRootResClHandler)Deprecated.Sets the Restlet that is called, if no root resource class could be found. -
Uses of Restlet in org.restlet.ext.json
Subclasses of Restlet in org.restlet.ext.json Modifier and Type Class Description classJsonpFilterFilter that converts response entity of the JSON media type into a JSONP callback document. -
Uses of Restlet in org.restlet.ext.velocity
Subclasses of Restlet in org.restlet.ext.velocity Modifier and Type Class Description classTemplateFilterFilter response's entity and wrap it with a Velocity's template representation.Constructors in org.restlet.ext.velocity with parameters of type Restlet Constructor Description TemplateFilter(Context context, Restlet next)Constructor.TemplateFilter(Context context, Restlet next, java.util.Map<java.lang.String,java.lang.Object> dataModel)Constructor.TemplateFilter(Context context, Restlet next, Resolver<java.lang.Object> dataModel)Constructor. -
Uses of Restlet in org.restlet.ext.wadl
Subclasses of Restlet in org.restlet.ext.wadl Modifier and Type Class Description classWadlApplicationDeprecated.Will be removed in next major release.classWadlComponentDeprecated.Will be removed in next major release.classWadlWrapperDeprecated.Will be removed in next major release.Methods in org.restlet.ext.wadl with parameters of type Restlet Modifier and Type Method Description private RouterWadlApplication. getNextRouter(Restlet current)Deprecated.Returns the next router available.private ResourceInfoWadlApplication. getResourceInfo(ApplicationInfo applicationInfo, Restlet restlet, java.lang.String path, Request request, Response response)Deprecated.Completes the data available about a given Restlet instance.Constructors in org.restlet.ext.wadl with parameters of type Restlet Constructor Description WadlWrapper(Restlet wrappedRestlet)Deprecated.Constructor. -
Uses of Restlet in org.restlet.ext.xml
Subclasses of Restlet in org.restlet.ext.xml Modifier and Type Class Description classTransformerFilter that can transform XML representations by applying an XSLT transform sheet. -
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.Fields in org.restlet.routing declared as Restlet Modifier and Type Field Description private RestletFilter. nextThe next Restlet.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.Fields in org.restlet.util declared as Restlet Modifier and Type Field Description private RestletServerList. nextThe next Restlet of added servers.private RestletWrapperRestlet. wrappedRestletThe wrapped Restlet instance.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.
-