You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
accounting-dashboard/src/main/java/org/gcube/portlets/user/accountingdashboard/client/rpc/AccountingDashboardService....

29 lines
727 B
Java

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;
}