Uses of Class
org.restlet.engine.adapter.ClientCall
-
Packages that use ClientCall Package Description org.restlet.engine.adapter Adapters between low-level HTTP calls and high-level Restlet Request and Response objects.org.restlet.engine.connector Integration with Java URLConnection class.org.restlet.ext.httpclient Integration with Apache HTTP Client @minor-version@.org.restlet.ext.httpclient.internal org.restlet.ext.jetty Integration with Jetty @minor-version@ which is a new implementation of the popular Jetty web server.org.restlet.ext.jetty.internal -
-
Uses of ClientCall in org.restlet.engine.adapter
Methods in org.restlet.engine.adapter that return ClientCall Modifier and Type Method Description abstract ClientCallHttpClientHelper. create(Request request)Creates a low-level HTTP client call from a high-level request.ClientCallClientAdapter. toSpecific(HttpClientHelper client, Request request)Converts a low-level HTTP call into a high-level uniform call.Methods in org.restlet.engine.adapter with parameters of type ClientCall Modifier and Type Method Description voidClientAdapter. commit(ClientCall httpCall, Request request, Response response)Commits the changes to a handled HTTP client call back into the original uniform call.protected voidClientAdapter. readResponseHeaders(ClientCall httpCall, Response response)Reads the response headers of a handled HTTP client call to update the original uniform call.voidClientAdapter. updateResponse(Response response, Status status, ClientCall httpCall)Updates the response with information from the lower-level HTTP client call. -
Uses of ClientCall in org.restlet.engine.connector
Subclasses of ClientCall in org.restlet.engine.connector Modifier and Type Class Description classHttpUrlConnectionCallHTTP client connector call based on JDK's java.net.HttpURLConnection class.Methods in org.restlet.engine.connector that return ClientCall Modifier and Type Method Description ClientCallHttpClientHelper. create(Request request)Creates a low-level HTTP client call from a high-level uniform call. -
Uses of ClientCall in org.restlet.ext.httpclient
Methods in org.restlet.ext.httpclient that return ClientCall Modifier and Type Method Description ClientCallHttpClientHelper. create(Request request)Creates a low-level HTTP client call from a high-level uniform call. -
Uses of ClientCall in org.restlet.ext.httpclient.internal
Subclasses of ClientCall in org.restlet.ext.httpclient.internal Modifier and Type Class Description classHttpMethodCallHTTP client connector call based on Apache HTTP Client's HttpMethod class. -
Uses of ClientCall in org.restlet.ext.jetty
Methods in org.restlet.ext.jetty that return ClientCall Modifier and Type Method Description ClientCallHttpClientHelper. create(Request request)Creates a low-level HTTP client call from a high-level uniform call. -
Uses of ClientCall in org.restlet.ext.jetty.internal
Subclasses of ClientCall in org.restlet.ext.jetty.internal Modifier and Type Class Description classJettyClientCallHTTP client connector call based on Jetty's HttpRequest class.
-