use of com.willshex.blogwt.shared.api.user.call.GetRolesResponse in project blogwt by billy1380.
the class RoleOracle method lookup.
/* (non-Javadoc)
*
* @see
* com.willshex.blogwt.client.oracle.SuggestOracle#lookup(com.google.gwt
* .user.client.ui.SuggestOracle.Request,
* com.google.gwt.user.client.ui.SuggestOracle.Callback) */
@Override
protected void lookup(final Request request, final Callback callback) {
final GetRolesRequest input = ApiHelper.setAccessCode(new GetRolesRequest());
input.session = SessionController.get().sessionForApiCall();
input.query = request.getQuery();
input.pager = PagerHelper.createDefaultPager();
input.pager.count = Integer.valueOf(request.getLimit());
if (getRolesRequest != null) {
getRolesRequest.cancel();
}
getRolesRequest = ApiHelper.createUserClient().getRoles(input, new AsyncCallback<GetRolesResponse>() {
@Override
public void onSuccess(GetRolesResponse output) {
if (output.status == StatusType.StatusTypeSuccess && output.pager != null) {
foundItems(request, callback, output.roles);
} else {
foundItems(request, callback, Collections.<Role>emptyList());
}
}
@Override
public void onFailure(Throwable caught) {
GWT.log("Error getting roles with query " + input.query, caught);
foundItems(request, callback, Collections.<Role>emptyList());
}
});
}
use of com.willshex.blogwt.shared.api.user.call.GetRolesResponse in project blogwt by billy1380.
the class RoleController method fetchRoles.
private void fetchRoles() {
final GetRolesRequest input = ApiHelper.setAccessCode(new GetRolesRequest());
input.pager = pager;
input.session = SessionController.get().sessionForApiCall();
if (getRolesRequest != null) {
getRolesRequest.cancel();
}
getRolesRequest = ApiHelper.createUserClient().getRoles(input, new AsyncCallback<GetRolesResponse>() {
@Override
public void onSuccess(GetRolesResponse output) {
getRolesRequest = null;
if (output.status == StatusType.StatusTypeSuccess) {
if (output.roles != null && output.roles.size() > 0) {
pager = output.pager;
updateRowCount(input.pager.count == null ? 0 : input.pager.count.intValue(), input.pager.count == null || input.pager.count.intValue() == 0);
updateRowData(input.pager.start.intValue(), output.roles);
} else {
updateRowCount(input.pager.start.intValue(), true);
updateRowData(input.pager.start.intValue(), Collections.<Role>emptyList());
}
}
DefaultEventBus.get().fireEventFromSource(new GetRolesSuccess(input, output), RoleController.this);
}
@Override
public void onFailure(Throwable caught) {
getRolesRequest = null;
DefaultEventBus.get().fireEventFromSource(new GetRolesFailure(input, caught), RoleController.this);
}
});
}
use of com.willshex.blogwt.shared.api.user.call.GetRolesResponse in project blogwt by billy1380.
the class UserService method getRoles.
public Request getRoles(GetRolesRequest input, AsyncSuccess<GetRolesRequest, GetRolesResponse> onSuccess, AsyncFailure<GetRolesRequest> onFailure) {
Request handle = null;
try {
handle = sendRequest(UserMethodGetRoles, input, new RequestCallback() {
@Override
public void onResponseReceived(Request request, Response response) {
try {
GetRolesResponse outputParameter = new GetRolesResponse();
parseResponse(response, outputParameter);
if (onSuccess != null) {
onSuccess.call(input, outputParameter);
}
onCallSuccess(UserService.this, UserMethodGetRoles, input, outputParameter);
} catch (JSONException | HttpException exception) {
if (onFailure != null) {
onFailure.call(input, exception);
}
onCallFailure(UserService.this, UserMethodGetRoles, input, exception);
}
}
@Override
public void onError(Request request, Throwable exception) {
if (onFailure != null) {
onFailure.call(input, exception);
}
onCallFailure(UserService.this, UserMethodGetRoles, input, exception);
}
});
onCallStart(UserService.this, UserMethodGetRoles, input, handle);
} catch (RequestException exception) {
if (onFailure != null) {
onFailure.call(input, exception);
}
onCallFailure(UserService.this, UserMethodGetRoles, input, exception);
}
return handle;
}
Aggregations