Interface SetVariablesCommandStep1
-
- All Known Implementing Classes:
SetVariablesCommandImpl
public interface SetVariablesCommandStep1
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceSetVariablesCommandStep1.SetVariablesCommandStep2
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SetVariablesCommandStep1.SetVariablesCommandStep2variables(InputStream variables)Sets the variables document from a JSON stream.SetVariablesCommandStep1.SetVariablesCommandStep2variables(Object variables)Sets the variables document from an object, which will be serialized into a JSON document.SetVariablesCommandStep1.SetVariablesCommandStep2variables(String variables)Sets the variables document from a JSON string.SetVariablesCommandStep1.SetVariablesCommandStep2variables(Map<String,Object> variables)Sets the variables document from a map.
-
-
-
Method Detail
-
variables
SetVariablesCommandStep1.SetVariablesCommandStep2 variables(InputStream variables)
Sets the variables document from a JSON stream.- Parameters:
variables- the variables JSON document as stream- Returns:
- the builder for this command. Call
#send()to complete the command and send it to the broker.
-
variables
SetVariablesCommandStep1.SetVariablesCommandStep2 variables(String variables)
Sets the variables document from a JSON string.- Parameters:
variables- the variables JSON document as String- Returns:
- the builder for this command. Call
#send()to complete the command and send it to the broker.
-
variables
SetVariablesCommandStep1.SetVariablesCommandStep2 variables(Map<String,Object> variables)
Sets the variables document from a map.- Parameters:
variables- the variables document as map- Returns:
- the builder for this command. Call
#send()to complete the command and send it to the broker.
-
variables
SetVariablesCommandStep1.SetVariablesCommandStep2 variables(Object variables)
Sets the variables document from an object, which will be serialized into a JSON document.- Parameters:
variables- the variables document as object- Returns:
- the builder for this command. Call
#send()to complete the command and send it to the broker.
-
-