Interface ParameterDataContext
-
- All Superinterfaces:
InputDataContext
,PluginDataContainer
,Serializable
,UserAttributeContainer
- All Known Subinterfaces:
SerialisableDataContext
public interface ParameterDataContext extends InputDataContext, Serializable
This data context provides access to input parameters as well as the parameter names and their types. It is serialisable to be used for providing parameter values to worklist items.
-
-
Field Summary
Fields Modifier and Type Field Description static long
serialVersionUID
Generated ID for serialisation.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,ProcessConstants.AdeptDataType>
getParameters()
Gets the names and the types of the parameters provided by thisInputDataContext
.-
Methods inherited from interface de.aristaflow.adept2.model.execution.InputDataContext
isNull, retrieveBooleanParameterValue, retrieveDateParameterValue, retrieveFloatParameterValue, retrieveIntegerParameterValue, retrieveStringParameterValue, retrieveUDTParameterValue, retrieveURIParameterValue
-
Methods inherited from interface de.aristaflow.adept2.model.common.PluginDataContainer
getPluginData, getPluginDatas, getSupportedPlugins
-
Methods inherited from interface de.aristaflow.adept2.model.common.UserAttributeContainer
getUserAttributes, getUserAttributeValue, removeUserAttributeValue, setUserAttributeValue
-
-
-
-
Field Detail
-
serialVersionUID
static final long serialVersionUID
Generated ID for serialisation.- See Also:
- Constant Field Values
-
-
Method Detail
-
getParameters
Map<String,ProcessConstants.AdeptDataType> getParameters()
Gets the names and the types of the parameters provided by thisInputDataContext
. With this information one can access the values of these parameters.- Returns:
- The names and the corresponding types of the parameters provided by
this
InputDataContext
.
-
-