Package org.pentaho.platform.api.action
Interface IVarArgsAction
- All Superinterfaces:
IAction
Allows an Action to accept inputs from the action sequence that are unspecified by the Action itself. In other
words, if there is no bean property for a particular input, it will be passed to the Action through this API.
- Since:
- 3.6
- Author:
- aphillips
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setVarArgs
(Map<String, Object> args) Inputs from an action sequence that cannot be set on an Action by Java bean convention will be passed in through this map.Methods inherited from interface org.pentaho.platform.api.action.IAction
execute, isExecutionSuccessful
-
Method Details
-
setVarArgs
Inputs from an action sequence that cannot be set on an Action by Java bean convention will be passed in through this map.- Parameters:
args
- a map of unspecified inputs
-