* @return
*/
private Map addEmptyInputs(Map inputCandidates) {
Map ServicesWithoutInput=registry.getAllServicesWithoutInput();
Map.Entry me;
ExtendedServiceInformation exInfo;
Iterator iter = ServicesWithoutInput.entrySet().iterator();
while (iter.hasNext()) {
me = (Map.Entry) iter.next();
exInfo = (ExtendedServiceInformation)me.getValue();
inputCandidates.put((Integer)me.getKey(),new ExtendedServiceInformation(exInfo.serviceID, true, exInfo.conceptID, exInfo.noConcepts, SimilarityMatchmaker.EXACT, 0.0));
}
return inputCandidates;
}