List of usage examples for com.google.gwt.http.client RequestCallback interface-usage
From source file org.fusesource.restygwt.client.AbstractRequestCallback.java
/** * * @author <a href="http://hiramchirino.com">Hiram Chirino</a> */ public abstract class AbstractRequestCallback<T> implements RequestCallback {
From source file org.fusesource.restygwt.client.callback.FilterawareRequestCallback.java
public interface FilterawareRequestCallback extends RequestCallback { public void addFilter(CallbackFilter filter); }
From source file org.fusesource.restygwt.client.dispatcher.AbstractRetryingCallback.java
public abstract class AbstractRetryingCallback implements RequestCallback { /** * Used by RetryingCallback * default value is 5 */
From source file org.gss_project.gss.web.client.rest.RestCallback.java
/** * @author kman * */ public abstract class RestCallback implements RequestCallback {
From source file org.gss_project.gss.web.client.rest.RestGetCallback.java
/** * @author kman */ public abstract class RestGetCallback implements RequestCallback { private static final int HTTP_OK = 200;
From source file org.gwt4e.sema4g.client.commands.proxies.RequestCallbackProxy.java
/**
* <p>Add support for RequestCallback in GWT {@link RequestCallback}</p>
* <br /><br />
* <p>If you are using SeMa4g, you have to this RequestCallbackProxy
* class instead of the RequestCallback. Otherwise SeMa4g will not work.</p>
*/
From source file org.gwt4e.sema4g.client.context.commands.proxies.SeMa4gRequestCallbackProxy.java
public class SeMa4gRequestCallbackProxy implements SeMa4gProxy, RequestCallback { private final RequestCallback asyncCallback; /* execution command of this proxy */ private SeMa4gRcpCommand command;
From source file org.gwtcmis.rest.AsyncRequestCallback.java
/** * Created by The eXo Platform SAS . * @version $Id: $ */ public class AsyncRequestCallback implements RequestCallback {
From source file org.jboss.errai.enterprise.client.jaxrs.api.RequestHolder.java
/** * Default implementation of {@link RequestCallback} that allows the * cancellation of pending {@link Request}s. */ public class RequestHolder implements RequestCallback {
From source file org.jboss.uberfire.dmr.poc.client.local.dmr.DMRCallback.java
/** * Simplified Callback for DMR requests. * * @author Stan Silvert ssilvert@redhat.com (C) 2014 Red Hat Inc. */ public abstract class DMRCallback implements RequestCallback {