Uses of Class
com.google.gwt.http.client.RequestBuilder
-
Packages that use RequestBuilder Package Description com.google.gwt.user.client.rpc Classes used in client-side implementation of remote procedure calls.com.google.web.bindery.requestfactory.gwt.client 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 RequestBuilder Modifier and Type Method Description protected RequestBuilder
RpcRequestBuilder. doCreate(java.lang.String serviceEntryPoint)
Called byRpcRequestBuilder.create(java.lang.String)
to instantiate the RequestBuilder object.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 RequestBuilder Modifier and Type Method Description protected 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, java.lang.String contentType)
protected void
RpcRequestBuilder. doSetRequestData(RequestBuilder rb, java.lang.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 RequestBuilder Modifier and Type Method Description protected 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 RequestBuilder Modifier and Type Method Description protected void
DefaultRequestTransport. configureRequestBuilder(RequestBuilder builder)
Override to change the headers sent in the HTTP request.
-