added common constant for user profile oid

git-svn-id: https://svn.research-infrastructures.eu/d4science/gcube/trunk/portal/portal-manager@169421 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Massimiliano Assante 2018-06-25 13:46:56 +00:00
parent 92295fcd0d
commit 3562802959
3 changed files with 4 additions and 2 deletions

View File

@ -10,7 +10,7 @@
<groupId>org.gcube.common.portal</groupId> <groupId>org.gcube.common.portal</groupId>
<artifactId>portal-manager</artifactId> <artifactId>portal-manager</artifactId>
<version>2.4.0-SNAPSHOT</version> <version>2.4.1-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>gCube Portal Manager</name> <name>gCube Portal Manager</name>
<description> <description>

View File

@ -27,4 +27,6 @@ public class GCubePortalConstants {
public static final String VRE_ID_ATTR_NAME = "gcube-vreid"; public static final String VRE_ID_ATTR_NAME = "gcube-vreid";
public static final String USER_ID_ATTR_NAME = "gcube-userId"; public static final String USER_ID_ATTR_NAME = "gcube-userId";
public static final String USER_PROFILE_OID = "userIdentificationParameter";
} }

View File

@ -360,7 +360,7 @@ public class PortalContext {
} }
} else { } else {
String toReturn = readTokenPropertyFile(); String toReturn = readTokenPropertyFile();
_log.debug("getCurrentToken devMode into IDE detected, returning scope: " + toReturn.toString()); _log.debug("getCurrentToken devMode into IDE detected, returning token: " + toReturn.toString());
_log.debug("The PortalBeanLocatorUtil stacktrace (java.lang.Exception) is acceptable in dev"); _log.debug("The PortalBeanLocatorUtil stacktrace (java.lang.Exception) is acceptable in dev");
return toReturn; return toReturn;
} }