public Map.Entry<URI, String> getCharacterisationOutputDataEntry(URI inputFileURI){
TestbedManager manager = TestbedManagerImpl.getInstance(true);
Experiment exp = manager.getExperiment(this.lExperimentIDRef);
if(exp!=null){
//contains the experiment's execution data
ExperimentExecutable executable = exp.getExperimentExecutable();
if(executable!=null){
//check if requested inputFileURI is part of the execution input
boolean bContains = executable.getAllInputHttpDataEntries().contains(inputFileURI);
if(bContains){
//find the matching entry
Iterator<Entry<URI,String>> itEntry = executable.getCharacterisationHttpDataEntries().iterator();
while(itEntry.hasNext()){
Entry<URI,String> entry = itEntry.next();
//check if we've found the matchin inputFileURI
if(entry.getKey().equals(inputFileURI)){
//build return value Map and then Entry