Search in sources :

Example 1 with UpdatePageResponse

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

the class PageController method updatePage.

/**
 * @param page
 */
public void updatePage(Page page) {
    final UpdatePageRequest input = SessionController.get().setSession(ApiHelper.setAccessCode(new UpdatePageRequest())).page(page);
    ApiHelper.createPageClient().updatePage(input, new AsyncCallback<UpdatePageResponse>() {

        @Override
        public void onSuccess(UpdatePageResponse output) {
            if (output.status == StatusType.StatusTypeSuccess) {
            }
            DefaultEventBus.get().fireEventFromSource(new UpdatePageSuccess(input, output), PageController.this);
        }

        @Override
        public void onFailure(Throwable caught) {
            DefaultEventBus.get().fireEventFromSource(new UpdatePageFailure(input, caught), PageController.this);
        }
    });
}
Also used : UpdatePageResponse(com.willshex.blogwt.shared.api.page.call.UpdatePageResponse) UpdatePageRequest(com.willshex.blogwt.shared.api.page.call.UpdatePageRequest) UpdatePageFailure(com.willshex.blogwt.client.api.page.event.UpdatePageEventHandler.UpdatePageFailure) UpdatePageSuccess(com.willshex.blogwt.client.api.page.event.UpdatePageEventHandler.UpdatePageSuccess)

Example 2 with UpdatePageResponse

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

the class PageService method updatePage.

public Request updatePage(UpdatePageRequest input, AsyncSuccess<UpdatePageRequest, UpdatePageResponse> onSuccess, AsyncFailure<UpdatePageRequest> onFailure) {
    Request handle = null;
    try {
        handle = sendRequest(PageMethodUpdatePage, input, new RequestCallback() {

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

            @Override
            public void onError(Request request, Throwable exception) {
                if (onFailure != null) {
                    onFailure.call(input, exception);
                }
                onCallFailure(PageService.this, PageMethodUpdatePage, input, exception);
            }
        });
        onCallStart(PageService.this, PageMethodUpdatePage, input, handle);
    } catch (RequestException exception) {
        if (onFailure != null) {
            onFailure.call(input, exception);
        }
        onCallFailure(PageService.this, PageMethodUpdatePage, 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) UpdatePageResponse(com.willshex.blogwt.shared.api.page.call.UpdatePageResponse) 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)

Aggregations

UpdatePageRequest (com.willshex.blogwt.shared.api.page.call.UpdatePageRequest)2 UpdatePageResponse (com.willshex.blogwt.shared.api.page.call.UpdatePageResponse)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 UpdatePageFailure (com.willshex.blogwt.client.api.page.event.UpdatePageEventHandler.UpdatePageFailure)1 UpdatePageSuccess (com.willshex.blogwt.client.api.page.event.UpdatePageEventHandler.UpdatePageSuccess)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 SubmitFormRequest (com.willshex.blogwt.shared.api.page.call.SubmitFormRequest)1 SubmitFormResponse (com.willshex.blogwt.shared.api.page.call.SubmitFormResponse)1 HttpException (com.willshex.gson.web.service.client.HttpException)1