throw new Validator.InvalidValueException("script.undefined.type");
ScriptProcessor scriptProcessor = registry.getScriptProcessor((String) scriptType.getValue());
if (scriptProcessor == null)
throw new Validator.InvalidValueException("script.processor.not.found");
InputStream is = new URL((String) url.getValue()).openStream();
scriptProcessor.validate(is);
url.commit();
showInfoNotification("validation.script.ok");
} catch (Validator.InvalidValueException e) {
logger.log(Level.SEVERE, e.getMessage(), e);