Uses of Interface
org.restlet.Uniform
- 
Packages that use Uniform 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 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.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.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.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) 
 -