Skip to content
Snippets Groups Projects
Commit db20e7bb authored by gpawel's avatar gpawel
Browse files

SP-485 BIS-286 : Java plugins for managed/dynamic properties and validation

SVN: 28368
parent 506557cb
No related branches found
No related tags found
No related merge requests found
......@@ -45,6 +45,8 @@ public class PredeployedPluginSelectionWidget extends
"plugin", "plugins");
this.viewContext = viewContext;
setAutoSelectFirst(false);
}
@Override
......@@ -90,9 +92,21 @@ public class PredeployedPluginSelectionWidget extends
public void setSelectedValue(String value)
{
clearSelections();
setSelection(convertItems(Collections.singletonList(value)));
}
public String tryGetSelectedValue()
{
SimpleComboValue<String> selection = getValue();
if (selection != null)
{
return selection.getValue();
}
return null;
}
private class ListPredeployedPluginsCallback extends
PredeployedPluginSelectionWidget.ListItemsCallback
{
......
......@@ -177,14 +177,14 @@ abstract public class AbstractScriptEditRegisterForm extends AbstractRegistratio
.getSimpleValue();
}
scriptExecution.update(nameField.isVisible() ? nameField.getValue()
: predeployedPluginsWidget.getValue().getValue(), scriptField
: predeployedPluginsWidget.tryGetSelectedValue(), scriptField
.getValue(), pluginTypeOrNull);
}
};
scriptField.addListener(Events.Change, scriptParametersListener);
nameField.addListener(Events.Change, scriptParametersListener);
predeployedPluginsWidget.addListener(Events.Change, scriptParametersListener);
predeployedPluginsWidget.addListener(Events.SelectionChange, scriptParametersListener);
}
private SelectionChangedListener<SimpleComboValue<ScriptType>> createScriptTypeChangedListener()
......@@ -241,7 +241,9 @@ abstract public class AbstractScriptEditRegisterForm extends AbstractRegistratio
scriptField.setValidator(null);
}
scriptExecution.update(nameField.getValue(), scriptField.getValue(), pluginType);
scriptExecution.update(nameField.isVisible() ? nameField.getValue()
: predeployedPluginsWidget.tryGetSelectedValue(), scriptField.getValue(),
pluginType);
}
private IValidable asValidable(final FormPanel panel)
......
......@@ -42,9 +42,9 @@ public class DynamicPropertyCalculatorFactory implements IDynamicPropertyCalcula
{
if (false == StringUtils.isBlank(pluginDirectoryPath))
{
hotDeploymentController.addPluginDirectory(new File(pluginDirectoryPath));
this.predeployedPlugins =
hotDeploymentController.getPluginMap(IDynamicPropertyCalculator.class);
hotDeploymentController.addPluginDirectory(new File(pluginDirectoryPath));
} else
{
this.predeployedPlugins = null;
......
......@@ -44,8 +44,8 @@ public class EntityValidatorFactory implements IEntityValidatorFactory
{
if (false == StringUtils.isBlank(pluginDirectoryPath))
{
hotDeploymentController.addPluginDirectory(new File(pluginDirectoryPath));
this.predeployedPlugins = hotDeploymentController.getPluginMap(IEntityValidator.class);
hotDeploymentController.addPluginDirectory(new File(pluginDirectoryPath));
} else
{
this.predeployedPlugins = null;
......
......@@ -49,9 +49,9 @@ public class ManagedPropertyEvaluatorFactory implements IManagedPropertyEvaluato
{
if (false == StringUtils.isBlank(pluginDirectoryPath))
{
hotDeploymentController.addPluginDirectory(new File(pluginDirectoryPath));
this.predeployedPlugins =
hotDeploymentController.getPluginMap(IManagedPropertyEvaluator.class);
hotDeploymentController.addPluginDirectory(new File(pluginDirectoryPath));
} else
{
this.predeployedPlugins = null;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment