List of usage examples for com.google.gwt.http.client RequestCallback interface-usage
From source file fi.jyu.student.jatahama.onlineinquirytool.client.OnlineInquiryTool.java
/** * Entry point classes define <code>onModuleLoad()</code>. */ public class OnlineInquiryTool implements EntryPoint, ValueChangeHandler<String>, ClickHandler, ChangeHandler, ClaimIOHandler, MouseOutHandler, MouseOverHandler, SubmitCompleteHandler, KeyDownHandler, RequestCallback {
From source file fr.fg.client.ajax.Action.java
public class Action implements RequestCallback { // ------------------------------------------------------- CONSTANTES -- // public final static HashMap<String, String> NO_PARAMETERS = new HashMap<String, String>(); private final static ActionCallbackAdapter DEFAULT_CALLBACK = new ActionCallbackAdapter();
From source file it.unical.inf.wsportal.client.callback.Callback.java
/**
*
* @version 0.1
* @author Simone Spaccarotella <i><a href="mailto:spa.simone@gmail.com">spa.simone@gmail.com</a></i>,
* Carmine Dodaro <i><a href="mailto:carminedodaro@gmail.com">carminedodaro@gmail.com</a></i>
*/
From source file nl.fontys.fhict.jea.gwt.jee7.client.bus.impl.connection.poll.PollConnection.java
/** * Implements a long polling connection * @author jgeenen */ public class PollConnection implements Connection<ServerIncoming>, RequestCallback {
From source file org.apache.cxf.management.web.browser.client.service.AbstractCallback.java
public abstract class AbstractCallback<T> implements RequestCallback { private static final int OK = 200; public void onResponseReceived(@Nonnull final Request request, @Nonnull final Response response) { if (OK == response.getStatusCode()) { onSuccess(parse(response));
From source file org.bonitasoft.web.toolkit.client.data.api.callback.HttpCallback.java
/** * @author Sverin Moussel * */ public abstract class HttpCallback implements RequestCallback {
From source file org.datacleaner.monitor.util.DCRequestCallback.java
/**
* Convenient abstract implementation of the {@link RequestCallback} which
* handles error situations.
*
* @see RequestCallback
*/
From source file org.eclipse.che.ide.rest.AsyncRequestCallback.java
/**
* Callback class for receiving the {@link Response}.
*
* @param <T>
* the return type of the response the callback expects.
* Use {@link Void} for methods returning {@code void}.
From source file org.eobjects.datacleaner.monitor.util.DCRequestCallback.java
/**
* Convenient abstract implementation of the {@link RequestCallback} which
* handles error situations.
*
* @see RequestCallback
*/
From source file org.fusesource.restygwt.client.AbstractNestedRequestCallback.java
public abstract class AbstractNestedRequestCallback implements RequestCallback { protected final Method method; protected RequestCallback requestCallback;