package org.gcube.portlet.user.userstatisticsportlet.client; import com.google.gwt.user.client.rpc.impl.RemoteServiceProxy; import com.google.gwt.user.client.rpc.impl.ClientSerializationStreamWriter; import com.google.gwt.user.client.rpc.SerializationStreamWriter; import com.google.gwt.core.client.GWT; import com.google.gwt.user.client.rpc.impl.RequestCallbackAdapter.ResponseReader; import com.google.gwt.user.client.rpc.SerializationException; import com.google.gwt.user.client.rpc.RpcToken; import com.google.gwt.user.client.rpc.RpcTokenException; import com.google.gwt.core.client.impl.Impl; import com.google.gwt.user.client.rpc.impl.RpcStatsContext; public class UserStatisticsService_Proxy extends RemoteServiceProxy implements org.gcube.portlet.user.userstatisticsportlet.client.UserStatisticsServiceAsync { private static final String REMOTE_SERVICE_INTERFACE_NAME = "org.gcube.portlet.user.userstatisticsportlet.client.UserStatisticsService"; private static final String SERIALIZATION_POLICY ="D1F27E2D652AE1A94EC26DA253E5F4EF"; private static final org.gcube.portlet.user.userstatisticsportlet.client.UserStatisticsService_TypeSerializer SERIALIZER = new org.gcube.portlet.user.userstatisticsportlet.client.UserStatisticsService_TypeSerializer(); public UserStatisticsService_Proxy() { super(GWT.getModuleBaseURL(), "statisticservice", SERIALIZATION_POLICY, SERIALIZER); } public void getPostsStats(com.google.gwt.user.client.rpc.AsyncCallback callback) { com.google.gwt.user.client.rpc.impl.RemoteServiceProxy.ServiceHelper helper = new com.google.gwt.user.client.rpc.impl.RemoteServiceProxy.ServiceHelper("UserStatisticsService_Proxy", "getPostsStats"); try { SerializationStreamWriter streamWriter = helper.start(REMOTE_SERVICE_INTERFACE_NAME, 0); helper.finish(callback, ResponseReader.OBJECT); } catch (SerializationException ex) { callback.onFailure(ex); } } public void getProfileStrength(com.google.gwt.user.client.rpc.AsyncCallback callback) { com.google.gwt.user.client.rpc.impl.RemoteServiceProxy.ServiceHelper helper = new com.google.gwt.user.client.rpc.impl.RemoteServiceProxy.ServiceHelper("UserStatisticsService_Proxy", "getProfileStrength"); try { SerializationStreamWriter streamWriter = helper.start(REMOTE_SERVICE_INTERFACE_NAME, 0); helper.finish(callback, ResponseReader.INT); } catch (SerializationException ex) { callback.onFailure(ex); } } public void getTotalSpaceInUse(com.google.gwt.user.client.rpc.AsyncCallback callback) { com.google.gwt.user.client.rpc.impl.RemoteServiceProxy.ServiceHelper helper = new com.google.gwt.user.client.rpc.impl.RemoteServiceProxy.ServiceHelper("UserStatisticsService_Proxy", "getTotalSpaceInUse"); try { SerializationStreamWriter streamWriter = helper.start(REMOTE_SERVICE_INTERFACE_NAME, 0); helper.finish(callback, ResponseReader.STRING); } catch (SerializationException ex) { callback.onFailure(ex); } } public void getUserSettings(com.google.gwt.user.client.rpc.AsyncCallback callback) { com.google.gwt.user.client.rpc.impl.RemoteServiceProxy.ServiceHelper helper = new com.google.gwt.user.client.rpc.impl.RemoteServiceProxy.ServiceHelper("UserStatisticsService_Proxy", "getUserSettings"); try { SerializationStreamWriter streamWriter = helper.start(REMOTE_SERVICE_INTERFACE_NAME, 0); helper.finish(callback, ResponseReader.OBJECT); } catch (SerializationException ex) { callback.onFailure(ex); } } @Override public SerializationStreamWriter createStreamWriter() { ClientSerializationStreamWriter toReturn = (ClientSerializationStreamWriter) super.createStreamWriter(); if (getRpcToken() != null) { toReturn.addFlags(ClientSerializationStreamWriter.FLAG_RPC_TOKEN_INCLUDED); } return toReturn; } @Override protected void checkRpcTokenType(RpcToken token) { if (!(token instanceof com.google.gwt.user.client.rpc.XsrfToken)) { throw new RpcTokenException("Invalid RpcToken type: expected 'com.google.gwt.user.client.rpc.XsrfToken' but got '" + token.getClass() + "'"); } } }