List of usage examples for com.google.gwt.http.client RequestCallback interface-usage
From source file org.jboss.uberfire.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 {
From source file org.nuxeo.ecm.platform.gwt.client.http.HttpCallback.java
/** * @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a> * */ public abstract class HttpCallback implements RequestCallback {
From source file org.pentaho.mantle.client.EmptyRequestCallback.java
public class EmptyRequestCallback implements RequestCallback { private static EmptyRequestCallback instance = new EmptyRequestCallback(); public static EmptyRequestCallback getInstance() { return instance;
From source file org.rapla.rest.gwtjsonrpc.client.impl.JsonCall.java
public abstract class JsonCall<T> implements RequestCallback { protected static final JavaScriptObject jsonParser; static { jsonParser = selectJsonParser(); }
From source file org.rhq.coregui.client.util.rpc.TrackingRequestCallback.java
/** * @author Greg Hinkle * @author Joseph Marques */ public class TrackingRequestCallback implements RequestCallback {
From source file org.rhq.enterprise.gui.coregui.client.util.rpc.TrackingRequestCallback.java
/** * @author Greg Hinkle * @author Joseph Marques */ public class TrackingRequestCallback implements RequestCallback {
From source file org.silverpeas.mobile.client.common.network.RequestCallbackOnlineOrOffline.java
/** * @author: svu */ public abstract class RequestCallbackOnlineOrOffline<T> implements RequestCallback { private static ApplicationMessages msg = GWT.create(ApplicationMessages.class);
From source file org.sonatype.gwt.client.callback.RestRequestCallback.java
public interface RestRequestCallback extends RequestCallback { /** * This interim response (the client has to wait for the final response) is used to inform the client that the * initial part of the request has been received and has not yet been rejected or completed by the server. * * @see <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.1.1">HTTP RFC - 10.1.1 100 Continue</a>
From source file org.t3as.snomedct.gwt.client.gwt.SnomedRequestCallback.java
public class SnomedRequestCallback implements RequestCallback { private final Messages messages = GWT.create(Messages.class); private final List<SnomedConcept> conceptList; private final Label statusLabel; private final GlassLoadingPanel glassPanel;
From source file org.wyona.security.gwt.accesspolicyeditor.client.AsynchronousPolicySetter.java
/** * http://code.google.com/p/bunsenandbeaker/wiki/DevGuideHttpRequests * http://code.google.com/p/bunsenandbeaker/wiki/DevGuideXML */ public class AsynchronousPolicySetter implements RequestCallback {