ScriptProcessor scriptProcessor = registry.getScriptProcessor(getScriptEngineType());
if (scriptProcessor == null) {
logger.severe("Script processor not found: " + getScriptEngineType() + ", skipping script execution. ");
return executed;
}
scriptProcessor.process(fields, is);
executed = true;
boundProperties.clear();
// dictContainers.clear();
} catch (Exception e) {