/**
* Get a properly-configured reference to the CSRF/XSRF token RPC.
* @return Asynchronous reference to the RPC, via the standard GWT.create() mechanism.
*/
public static IXsrfTokenRpcAsync getXsrfTokenRpc() {
IXsrfTokenRpcAsync remoteInterface = GWT.create(IXsrfTokenRpc.class);
((ServiceDefTarget) remoteInterface).setRpcRequestBuilder(new TimeoutBuilder());
return remoteInterface;
}