Search in sources :

Example 1 with SubmitFormResponse

use of com.willshex.blogwt.shared.api.page.call.SubmitFormResponse in project blogwt by billy1380.

the class PageService method submitForm.

public Request submitForm(SubmitFormRequest input, AsyncSuccess<SubmitFormRequest, SubmitFormResponse> onSuccess, AsyncFailure<SubmitFormRequest> onFailure) {
    Request handle = null;
    try {
        handle = sendRequest(PageMethodSubmitForm, input, new RequestCallback() {

            @Override
            public void onResponseReceived(Request request, Response response) {
                try {
                    SubmitFormResponse outputParameter = new SubmitFormResponse();
                    parseResponse(response, outputParameter);
                    if (onSuccess != null) {
                        onSuccess.call(input, outputParameter);
                    }
                    onCallSuccess(PageService.this, PageMethodSubmitForm, input, outputParameter);
                } catch (JSONException | HttpException exception) {
                    if (onFailure != null) {
                        onFailure.call(input, exception);
                    }
                    onCallFailure(PageService.this, PageMethodSubmitForm, input, exception);
                }
            }

            @Override
            public void onError(Request request, Throwable exception) {
                if (onFailure != null) {
                    onFailure.call(input, exception);
                }
                onCallFailure(PageService.this, PageMethodSubmitForm, input, exception);
            }
        });
        onCallStart(PageService.this, PageMethodSubmitForm, input, handle);
    } catch (RequestException exception) {
        if (onFailure != null) {
            onFailure.call(input, exception);
        }
        onCallFailure(PageService.this, PageMethodSubmitForm, input, exception);
    }
    return handle;
}
Also used : GetPagesResponse(com.willshex.blogwt.shared.api.page.call.GetPagesResponse) UpdatePageResponse(com.willshex.blogwt.shared.api.page.call.UpdatePageResponse) SubmitFormResponse(com.willshex.blogwt.shared.api.page.call.SubmitFormResponse) CreatePageResponse(com.willshex.blogwt.shared.api.page.call.CreatePageResponse) GetPageResponse(com.willshex.blogwt.shared.api.page.call.GetPageResponse) Response(com.google.gwt.http.client.Response) DeletePageResponse(com.willshex.blogwt.shared.api.page.call.DeletePageResponse) SubmitFormResponse(com.willshex.blogwt.shared.api.page.call.SubmitFormResponse) RequestCallback(com.google.gwt.http.client.RequestCallback) GetPageRequest(com.willshex.blogwt.shared.api.page.call.GetPageRequest) CreatePageRequest(com.willshex.blogwt.shared.api.page.call.CreatePageRequest) Request(com.google.gwt.http.client.Request) GetPagesRequest(com.willshex.blogwt.shared.api.page.call.GetPagesRequest) SubmitFormRequest(com.willshex.blogwt.shared.api.page.call.SubmitFormRequest) DeletePageRequest(com.willshex.blogwt.shared.api.page.call.DeletePageRequest) UpdatePageRequest(com.willshex.blogwt.shared.api.page.call.UpdatePageRequest) JSONException(com.google.gwt.json.client.JSONException) HttpException(com.willshex.gson.web.service.client.HttpException) RequestException(com.google.gwt.http.client.RequestException)

Example 2 with SubmitFormResponse

use of com.willshex.blogwt.shared.api.page.call.SubmitFormResponse in project blogwt by billy1380.

the class FormController method submitForm.

public void submitForm(Form form) {
    final SubmitFormRequest input = ApiHelper.setAccessCode(new SubmitFormRequest());
    input.form = form;
    ApiHelper.createPageClient().submitForm(input, new AsyncCallback<SubmitFormResponse>() {

        @Override
        public void onSuccess(SubmitFormResponse output) {
            if (output.status == StatusType.StatusTypeSuccess) {
            }
            DefaultEventBus.get().fireEventFromSource(new SubmitFormEventHandler.SubmitFormSuccess(input, output), FormController.this);
        }

        @Override
        public void onFailure(Throwable caught) {
            DefaultEventBus.get().fireEventFromSource(new SubmitFormEventHandler.SubmitFormFailure(input, caught), FormController.this);
        }
    });
}
Also used : SubmitFormResponse(com.willshex.blogwt.shared.api.page.call.SubmitFormResponse) SubmitFormRequest(com.willshex.blogwt.shared.api.page.call.SubmitFormRequest)

Aggregations

SubmitFormRequest (com.willshex.blogwt.shared.api.page.call.SubmitFormRequest)2 SubmitFormResponse (com.willshex.blogwt.shared.api.page.call.SubmitFormResponse)2 Request (com.google.gwt.http.client.Request)1 RequestCallback (com.google.gwt.http.client.RequestCallback)1 RequestException (com.google.gwt.http.client.RequestException)1 Response (com.google.gwt.http.client.Response)1 JSONException (com.google.gwt.json.client.JSONException)1 CreatePageRequest (com.willshex.blogwt.shared.api.page.call.CreatePageRequest)1 CreatePageResponse (com.willshex.blogwt.shared.api.page.call.CreatePageResponse)1 DeletePageRequest (com.willshex.blogwt.shared.api.page.call.DeletePageRequest)1 DeletePageResponse (com.willshex.blogwt.shared.api.page.call.DeletePageResponse)1 GetPageRequest (com.willshex.blogwt.shared.api.page.call.GetPageRequest)1 GetPageResponse (com.willshex.blogwt.shared.api.page.call.GetPageResponse)1 GetPagesRequest (com.willshex.blogwt.shared.api.page.call.GetPagesRequest)1 GetPagesResponse (com.willshex.blogwt.shared.api.page.call.GetPagesResponse)1 UpdatePageRequest (com.willshex.blogwt.shared.api.page.call.UpdatePageRequest)1 UpdatePageResponse (com.willshex.blogwt.shared.api.page.call.UpdatePageResponse)1 HttpException (com.willshex.gson.web.service.client.HttpException)1