accounting-dashboard/src/main/java/org/gcube/portlets/user/accountingdashboard/client/rpc/AccountingDashboardService....

29 lines
727 B
Java
Raw Normal View History

package org.gcube.portlets.user.accountingdashboard.client.rpc;
import org.gcube.portlets.user.accountingdashboard.shared.exception.ServiceException;
import org.gcube.portlets.user.accountingdashboard.shared.session.UserInfo;
import com.google.gwt.user.client.rpc.RemoteService;
import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
/**
*
* @author Giancarlo Panichi
*
*
*/
@RemoteServiceRelativePath("accountingdashboardservice")
public interface AccountingDashboardService extends RemoteService {
/**
* Get informations on the current user
*
* @return UserInfo user inforamations
* @throws ServiceException
* exception
*/
public UserInfo hello() throws ServiceException;
}