Uses of Interface
org.restlet.Uniform
-
Packages that use Uniform Package Description org.restlet Core classes of the API.org.restlet.engine.adapter Adapters between low-level HTTP calls and high-level Restlet Request and Response objects.org.restlet.engine.application Supports Restlet applications.org.restlet.engine.component Supports Restlet components.org.restlet.engine.connector Integration with Java URLConnection class.org.restlet.engine.log Supports the log service.org.restlet.engine.util General utilities.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.httpclient.internal org.restlet.ext.jaxrs Support for JAX-RS API.org.restlet.ext.jetty.internal 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 Uniform in org.restlet
Classes in org.restlet that implement Uniform 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.classRestletUniform class that provides a context and life cycle support.classServerConnector acting as a generic server.Fields in org.restlet declared as Uniform Modifier and Type Field Description private UniformMessage. onErrorCallback invoked when an error occurs when sending the message.private UniformRequest. onResponseCallback invoked on response reception.private UniformMessage. onSentCallback invoked after sending the message.Methods in org.restlet that return Uniform Modifier and Type Method Description UniformMessage. getOnError()Returns the callback invoked when an error occurs when sending the message.UniformRequest. getOnResponse()Returns the callback invoked on response reception.UniformMessage. getOnSent()Returns the callback invoked after sending the message.Methods in org.restlet with parameters of type Uniform Modifier and Type Method Description voidRestlet. handle(Request request, Response response, Uniform onResponseCallback)Handles a call.voidRestlet. handle(Request request, Uniform onReceivedCallback)Handles a call.voidMessage. setOnError(Uniform onError)Sets the callback invoked when an error occurs when sending the message.voidRequest. setOnResponse(Uniform onResponseCallback)Sets the callback invoked on response reception.voidMessage. setOnSent(Uniform onSentCallback)Sets the callback invoked after sending the message. -
Uses of Uniform in org.restlet.engine.adapter
Methods in org.restlet.engine.adapter with parameters of type Uniform Modifier and Type Method Description voidClientCall. sendRequest(Request request, Response response, Uniform callback)Sends the request to the client. -
Uses of Uniform in org.restlet.engine.application
Classes in org.restlet.engine.application that implement Uniform 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. -
Uses of Uniform in org.restlet.engine.component
Classes in org.restlet.engine.component that implement Uniform 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. -
Uses of Uniform in org.restlet.engine.connector
Methods in org.restlet.engine.connector with parameters of type Uniform Modifier and Type Method Description voidHttpUrlConnectionCall. sendRequest(Request request, Response response, Uniform callback) -
Uses of Uniform in org.restlet.engine.log
Classes in org.restlet.engine.log that implement Uniform Modifier and Type Class Description classLogFilterFilter logging all calls after their handling by the target Restlet. -
Uses of Uniform in org.restlet.engine.util
Classes in org.restlet.engine.util that implement Uniform 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. -
Uses of Uniform in org.restlet.ext.crypto
Classes in org.restlet.ext.crypto that implement Uniform 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 Uniform in org.restlet.ext.guice
Classes in org.restlet.ext.guice that implement Uniform 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 Uniform in org.restlet.ext.httpclient.internal
Methods in org.restlet.ext.httpclient.internal with parameters of type Uniform Modifier and Type Method Description voidHttpMethodCall. sendRequest(Request request, Response response, Uniform callback) -
Uses of Uniform in org.restlet.ext.jaxrs
Classes in org.restlet.ext.jaxrs that implement Uniform Modifier and Type Class Description classJaxRsApplicationDeprecated.Will be removed in next minor release.classJaxRsRestletDeprecated.Will be removed in next minor release. -
Uses of Uniform in org.restlet.ext.jetty.internal
Methods in org.restlet.ext.jetty.internal with parameters of type Uniform Modifier and Type Method Description voidJettyClientCall. sendRequest(Request request, Response response, Uniform callback) -
Uses of Uniform in org.restlet.ext.json
Classes in org.restlet.ext.json that implement Uniform Modifier and Type Class Description classJsonpFilterFilter that converts response entity of the JSON media type into a JSONP callback document. -
Uses of Uniform in org.restlet.ext.velocity
Classes in org.restlet.ext.velocity that implement Uniform Modifier and Type Class Description classTemplateFilterFilter response's entity and wrap it with a Velocity's template representation. -
Uses of Uniform in org.restlet.ext.wadl
Classes in org.restlet.ext.wadl that implement Uniform 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. -
Uses of Uniform in org.restlet.ext.xml
Classes in org.restlet.ext.xml that implement Uniform Modifier and Type Class Description classTransformerFilter that can transform XML representations by applying an XSLT transform sheet. -
Uses of Uniform in org.restlet.resource
Classes in org.restlet.resource that implement Uniform 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.Fields in org.restlet.resource declared as Uniform Modifier and Type Field Description private UniformClientResource. nextThe next Restlet.Methods in org.restlet.resource that return Uniform Modifier and Type Method Description protected UniformClientResource. createNext()Creates a next Restlet is no one is set.UniformClientResource. getNext()Returns the next Restlet.UniformClientResource. getOnResponse()Returns the callback invoked on response reception.UniformClientResource. getOnSent()Returns the callback invoked after sending the request.UniformServerResource. getOnSent()Returns the callback invoked after sending the response.Methods in org.restlet.resource with parameters of type Uniform Modifier and Type Method Description protected voidClientResource. handle(Request request, Response response, java.util.List<Reference> references, int retryAttempt, Uniform next)Handle the call and follow redirection for safe methods.protected voidClientResource. redirect(Request request, Response response, java.util.List<Reference> references, int retryAttempt, Uniform next)Effectively redirects a client call.protected voidClientResource. retry(Request request, Response response, java.util.List<Reference> references, int retryAttempt, Uniform next)Effectively retries a failed client call.voidClientResource. setNext(Uniform next)Sets the next handler such as a Restlet or a Filter.voidClientResource. setOnResponse(Uniform onResponseCallback)Sets the callback invoked on response reception.voidClientResource. setOnSent(Uniform onSentCallback)Sets the callback invoked after sending the request.voidServerResource. setOnSent(Uniform onSentCallback)Sets the callback invoked after sending the response. -
Uses of Uniform in org.restlet.routing
Classes in org.restlet.routing that implement Uniform 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. -
Uses of Uniform in org.restlet.security
Classes in org.restlet.security that implement Uniform 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 Uniform in org.restlet.util
Classes in org.restlet.util that implement Uniform Modifier and Type Class Description classWrapperRestletRestlet wrapper.Methods in org.restlet.util that return Uniform Modifier and Type Method Description UniformWrapperRequest. getOnResponse()Methods in org.restlet.util with parameters of type Uniform Modifier and Type Method Description voidWrapperRequest. setOnResponse(Uniform onResponseCallback)
-