Minor update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@101153 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-10-29 13:53:33 +00:00
parent d42d25cdca
commit 2becb5c4d1
1 changed files with 5 additions and 2 deletions

View File

@ -7942,7 +7942,8 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
HttpSession session = this.getThreadLocalRequest().getSession();
ASLSession aslSession = SessionUtil.getAslSession(session);
logger.debug("Get uri from resolver: "+uriResolverSession);
UriResolverManager resolver;
Map<String, String> params = new HashMap<String, String>();
@ -7952,6 +7953,7 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
.getApplicationType().toString());
params.put("gis-UUID", uriResolverSession.getUuid());
params.put("scope", aslSession.getScope());
logger.debug("Uri Resolver params: "+params);
link = resolver.getLink(params, true); // true, link is shorted
// otherwise none
break;
@ -7959,7 +7961,8 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
break;
}
logger.debug("Retrieved Link: "+link);
return link;
} catch (TDGWTServiceException e) {