user-statistics/src/main/java/org/gcube/portlet/user/userstatisticsportlet/client/UserStatisticsService.java

44 lines
1.3 KiB
Java

package org.gcube.portlet.user.userstatisticsportlet.client;
import org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean;
import org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation;
import com.google.gwt.user.client.rpc.RemoteService;
import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
/**
* Interface for retrieving user's statistics
* @author Costantino Perciante at ISTI-CNR
*/
@RemoteServiceRelativePath("statisticservice")
public interface UserStatisticsService extends RemoteService {
/**
* get other user's information
* @return an object with user's information (actual vre, his name, url of his image)
*/
UserInformation getUserSettings(String userid);
/**
* get information relatives to feeds(posts), comment replies and likes received
* @return an object with user's statistics (number of feeds(posts), comment replies, likes received)
*/
PostsStatsBean getPostsStats(String userid);
/**
* get the total space in use on the workspace
*/
String getTotalSpaceInUse(String userid);
/**
* get profile strenght
*/
int getProfileStrength(String userid);
/**
* when the portlet is deployed on the user profile page, allows him to decide to show his statistics
* to other members or not
*/
void setShowMyOwnStatisticsToOtherPeople(boolean show);
}