Renamed output

git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/Common/workspace-task-executor-library@169296 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Francesco Mangiacrapa 2018-06-18 13:30:53 +00:00
parent f4a9c9aabf
commit da918cd90e
1 changed files with 4 additions and 4 deletions

View File

@ -273,12 +273,12 @@ public class DMConverter {
FileResource fileResource = (FileResource) res;
String fileName=retrieveFileName(fileResource.getUrl());
logger.debug("Entry: " + key + " = "+ fileResource+", FileName="+fileName);
return "Entry: " + key + " = "+fileResource+", FileName="+fileName;
return "FileName: "+fileName + ", PublicLink = "+fileResource.getUrl();
case IMAGE:
ImageResource imageResource = (ImageResource) res;
String imageName=retrieveFileName(imageResource.getLink());
logger.debug("Entry: " + key + " = "+ imageResource+", ImageName="+imageName);
return "Entry: " + key + " = "+ imageResource+", ImageName="+imageName;
return "ImageName: " + imageName + ", PublicLink = "+ imageResource.getLink();
case MAP:
logger.debug("Entry: " + key + " = "+ res);
return "Entry: " + key + " = "+ res;
@ -288,8 +288,8 @@ public class DMConverter {
case TABULAR:
TableResource tableResource = (TableResource) res;
String tableName=retrieveFileName(tableResource.getResourceId());
logger.debug("Entry: " + key + " = "+ tableResource+", TableName="+tableName);
return "Entry: " + key + " = "+ tableResource+", TableName="+tableName;
logger.debug("TableName: " + tableName + ", ResourceId = "+ tableResource.getResourceId());
return "TableName: " + tableName + ", ResourceId = "+ tableResource.getResourceId();
default:
logger.debug("Entry: " + key + " = "+ res);
return "Entry: " + key + " = "+ res;