An ObjectConfigurationAction
allows you to apply Plugins and scripts to an object
or objects.
Type | Name and description |
---|---|
ObjectConfigurationAction |
from(Object script) Adds a script to use to configure the target objects. |
ObjectConfigurationAction |
plugin(Class<? extends Plugin> pluginClass) Adds a Plugin to use to configure the target objects. |
ObjectConfigurationAction |
plugin(String pluginId) Adds a Plugin to use to configure the target objects. |
ObjectConfigurationAction |
to(Object... targets) |
Adds a script to use to configure the target objects. You can call this method multiple times, to use multiple scripts. Scripts and plugins are applied in the order that they are added.
script
- The script. Evaluated as per Project.file. However, note that
a URL can also be used, allowing the script to be fetched using HTTP, for example.Adds a Plugin to use to configure the target objects. You can call this method multiple times, to use multiple plugins. Scripts and plugins are applied in the order that they are added.
pluginClass
- The plugin to apply.Adds a Plugin to use to configure the target objects. You can call this method multiple times, to use multiple plugins. Scripts and plugins are applied in the order that they are added.
pluginId
- The id of the plugin to apply.
Specifies some target objects to be configured. Any collections or arrays in the given parameters will be flattened, and the script applied to each object in the result, in the order given. Each call to this method adds some additional target objects.
targets
- The target objects.