fix for getAuthorisedApplicationInfoFromIs

git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portal/portal-auth-library@162753 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Costantino Perciante 2018-01-30 15:31:02 +00:00
parent fec7f9f8d9
commit 7166e6ca0c
2 changed files with 2 additions and 5 deletions

View File

@ -10,7 +10,7 @@
<groupId>org.gcube.portal.auth</groupId>
<artifactId>portal-auth-library</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.1</version>
<packaging>jar</packaging>
<name>portal-auth-library</name>

View File

@ -34,9 +34,6 @@ import org.gcube.vomanagement.usermanagement.impl.LiferayGroupManager;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
*
* @author Massimiliano Assante, CNR-ISTI
@ -63,7 +60,7 @@ public class AuthUtil {
String encodedClientId = URLEncoder.encode(clientId, "UTF-8").replaceAll("\\+", "%20");
String icproxyEndPoint = PortalContext.getICProxyEndPoint();
String callToICProxy = new StringBuilder(icproxyEndPoint)
.append("/")
.append("/Resource/")
.append(encodedClientId)
.toString();