modelParamMap.remove(UtilXml.checkEmpty(exclude.getAttribute("field-name")));
}
}
// now add in all the remaining params
Set keySet = modelParamMap.keySet();
Iterator setIter = keySet.iterator();
while (setIter.hasNext()) {
ModelParam thisParam = (ModelParam) modelParamMap.get(setIter.next());
//Debug.logInfo("Adding Param to " + service.name + ": " + thisParam.name + " [" + thisParam.mode + "] " + thisParam.type + " (" + thisParam.optional + ")", module);
service.addParam(thisParam);