updated pom to maven portal bom 3.0
git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portal/social-networking-library@128434 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
5e5891ea84
commit
df008d8b66
1
pom.xml
1
pom.xml
|
@ -53,7 +53,6 @@
|
|||
<dependency>
|
||||
<groupId>org.gcube.common.portal</groupId>
|
||||
<artifactId>portal-manager</artifactId>
|
||||
<version>[2.0.0-SNAPSHOT, 3.0.0-SNAPSHOT)</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
|
|
@ -9,6 +9,7 @@ public class GCubeSocialNetworking implements EntryPoint {
|
|||
public static final String USER_PROFILE_OID = "userIdentificationParameter";
|
||||
public static final String HASHTAG_OID = "hashtagIdentificationParameter";
|
||||
public static final String SEARCH_OID = "elasticSearchIdentificationParameter";
|
||||
public static final String USER_PROFILE_LINK = "/profile";
|
||||
public void onModuleLoad() {
|
||||
}
|
||||
|
||||
|
|
|
@ -5,8 +5,6 @@ import java.util.HashMap;
|
|||
|
||||
/**
|
||||
* @author Massimiliano Assante ISTI-CNR
|
||||
*
|
||||
* @version 1.0 July 12th 2012
|
||||
*/
|
||||
@SuppressWarnings("serial")
|
||||
public class UserInfo implements Serializable {
|
||||
|
@ -111,5 +109,13 @@ public class UserInfo implements Serializable {
|
|||
this.admin = admin;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "UserInfo [username=" + username + ", fullName=" + fullName
|
||||
+ ", avatarId=" + avatarId + ", emailaddress=" + emailaddress
|
||||
+ ", accountURL=" + accountURL + ", male=" + male + ", admin="
|
||||
+ admin + ", ownVREs=" + ownVREs + "]";
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue