Uses of Class
com.google.gwt.http.client.RequestBuilder
Packages that use RequestBuilder
Package
Description
Classes used in client-side implementation of remote procedure calls.
A package for managing client-server requests.
-
Uses of RequestBuilder in com.google.gwt.user.client.rpc
Methods in com.google.gwt.user.client.rpc that return RequestBuilderModifier and TypeMethodDescriptionprotected RequestBuilder
Called byRpcRequestBuilder.create(java.lang.String)
to instantiate the RequestBuilder object.final RequestBuilder
RpcRequestBuilder.finish()
This method must be called to return the RequestBuilder that the RPC request will be made with.Methods in com.google.gwt.user.client.rpc with parameters of type RequestBuilderModifier and TypeMethodDescriptionprotected void
RpcRequestBuilder.doFinish
(RequestBuilder rb) Called byRpcRequestBuilder.finish()
prior to returning the RequestBuilder to the caller.protected void
RpcRequestBuilder.doSetCallback
(RequestBuilder rb, RequestCallback callback) protected void
RpcRequestBuilder.doSetContentType
(RequestBuilder rb, String contentType) protected void
RpcRequestBuilder.doSetRequestData
(RequestBuilder rb, String data) protected void
RpcRequestBuilder.doSetRequestId
(RequestBuilder rb, int id) Called byRpcRequestBuilder.setRequestId(int)
. -
Uses of RequestBuilder in com.google.web.bindery.requestfactory.gwt.client
Methods in com.google.web.bindery.requestfactory.gwt.client that return RequestBuilderModifier and TypeMethodDescriptionprotected RequestBuilder
DefaultRequestTransport.createRequestBuilder()
Constructs aRequestBuilder
using thePOST
method sent to the URL returned fromDefaultRequestTransport.getRequestUrl()
.Methods in com.google.web.bindery.requestfactory.gwt.client with parameters of type RequestBuilderModifier and TypeMethodDescriptionprotected void
DefaultRequestTransport.configureRequestBuilder
(RequestBuilder builder) Override to change the headers sent in the HTTP request.