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:
parent
fec7f9f8d9
commit
7166e6ca0c
2
pom.xml
2
pom.xml
|
@ -10,7 +10,7 @@
|
||||||
|
|
||||||
<groupId>org.gcube.portal.auth</groupId>
|
<groupId>org.gcube.portal.auth</groupId>
|
||||||
<artifactId>portal-auth-library</artifactId>
|
<artifactId>portal-auth-library</artifactId>
|
||||||
<version>1.0.0-SNAPSHOT</version>
|
<version>1.0.1</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<name>portal-auth-library</name>
|
<name>portal-auth-library</name>
|
||||||
|
|
|
@ -34,9 +34,6 @@ import org.gcube.vomanagement.usermanagement.impl.LiferayGroupManager;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author Massimiliano Assante, CNR-ISTI
|
* @author Massimiliano Assante, CNR-ISTI
|
||||||
|
@ -63,7 +60,7 @@ public class AuthUtil {
|
||||||
String encodedClientId = URLEncoder.encode(clientId, "UTF-8").replaceAll("\\+", "%20");
|
String encodedClientId = URLEncoder.encode(clientId, "UTF-8").replaceAll("\\+", "%20");
|
||||||
String icproxyEndPoint = PortalContext.getICProxyEndPoint();
|
String icproxyEndPoint = PortalContext.getICProxyEndPoint();
|
||||||
String callToICProxy = new StringBuilder(icproxyEndPoint)
|
String callToICProxy = new StringBuilder(icproxyEndPoint)
|
||||||
.append("/")
|
.append("/Resource/")
|
||||||
.append(encodedClientId)
|
.append(encodedClientId)
|
||||||
.toString();
|
.toString();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue