Package com.dtolabs.rundeck.plugins.step
Interface NodeStepPlugin
-
- All Known Implementing Classes:
RemoteScriptNodeStepPluginAdapter_Ext
public interface NodeStepPluginThe plugin interface for a Workflow Node Step Plugin.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default booleanblankIfUnexpanded()voidexecuteNodeStep(PluginStepContext context, java.util.Map<java.lang.String,java.lang.Object> configuration, INodeEntry entry)Execute the plugin step logic for the given node.
-
-
-
Method Detail
-
executeNodeStep
void executeNodeStep(PluginStepContext context, java.util.Map<java.lang.String,java.lang.Object> configuration, INodeEntry entry) throws NodeStepException
Execute the plugin step logic for the given node.- Parameters:
context- the step contextconfiguration- Any configuration property values not otherwise applied to the pluginentry- the Node- Throws:
NodeStepException- if an error occurs
-
blankIfUnexpanded
default boolean blankIfUnexpanded()
-
-