This commit is contained in:
Francesco Mangiacrapa 2013-02-15 16:30:49 +00:00
parent 3b07d1f258
commit 27ba4d47b7
3 changed files with 9 additions and 5 deletions

View File

@ -767,9 +767,12 @@ public class GWTWorkspaceServiceImpl extends RemoteServiceServlet implements GWT
// get the property value - the application Id
appId = prop.getProperty(property);
GCUBEClientLog logger = new GCUBEClientLog(GWTWorkspaceServiceImpl.class);
logger.trace("get URL From property file return AppId: "+appId);
//print it out
System.out.println(prop.getProperty(property));
System.out.println("get URL From property file return AppId: "+appId);
//set property in ASL session
setValueInSession(property,value);

View File

@ -24,5 +24,5 @@ REPORT = idreport
# open directly the object
#
idtemplate=org.gcube.portlets.user.reportgenerator.server.servlet.ReportServiceImpl
idreport=org.gcube.portlets.user.templates.server.TemplateServiceImpl
idtemplate=org.gcube.portlets.user.templates.server.TemplateServiceImpl
idreport=org.gcube.portlets.user.reportgenerator.server.servlet.ReportServiceImpl

View File

@ -45,8 +45,9 @@ public class Util {
// public static final String TEST_USER = "federico.defaveri";
// public static final String TEST_USER = "massimiliano.assante";
// public static final String TEST_USER = "pasquale.pagano";
public static final String TEST_USER = "test.user";
public static final String TEST_USER_FULL_NAME = "Test User";
public static final String TEST_USER = "francesco.mangiacrapa";
// public static final String TEST_USER = "test.user";
public static final String TEST_USER_FULL_NAME = "Francesco Mangiacrapa";
public static GCUBEClientLog defaultLogger = new GCUBEClientLog("WorkspacePortlet");