Class InteractionHelper.ParametersMap
- java.lang.Object
-
- com.orchestranetworks.interactions.InteractionHelper.ParametersMap
-
- Enclosing class:
- InteractionHelper
public static final class InteractionHelper.ParametersMap extends Object
Defines the parameters of an interaction, either the input, output or internal parameters.
-
-
Constructor Summary
Constructors Constructor Description ParametersMap()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Iterator<String>
getVariableNames()
Returns the names of the interaction parameters.String
getVariableString(String aVariableName)
Returns the value of the parameter with the specified name,null
if the parameter is unset.Object
setVariableString(String aVariableName, String aValue)
Updates a parameter value.
-
-
-
Method Detail
-
getVariableString
public String getVariableString(String aVariableName)
Returns the value of the parameter with the specified name,null
if the parameter is unset.
-
getVariableNames
public Iterator<String> getVariableNames()
Returns the names of the interaction parameters.
-
-