Package io.camunda.client.impl.command
Class GloballyScopedCreateClusterVariableImpl
java.lang.Object
io.camunda.client.impl.command.GloballyScopedCreateClusterVariableImpl
- All Implemented Interfaces:
FinalCommandStep<CreateClusterVariableResponse>,GloballyScopedClusterVariableCreationCommandStep1
public class GloballyScopedCreateClusterVariableImpl
extends Object
implements GloballyScopedClusterVariableCreationCommandStep1
-
Constructor Summary
ConstructorsConstructorDescriptionGloballyScopedCreateClusterVariableImpl(HttpClient httpClient, JsonMapper jsonMapper) -
Method Summary
Modifier and TypeMethodDescriptionSets the name and value of the cluster variable.kind(ClusterVariableKind kind) Sets the kind of the cluster variable (optional, defaults to JSON).Sets the metadata bag of the cluster variable (optional).requestTimeout(Duration requestTimeout) Sets the request timeout for the command.send()Sends the command to the Camunda gateway.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.camunda.client.api.command.FinalCommandStep
execute
-
Constructor Details
-
GloballyScopedCreateClusterVariableImpl
-
-
Method Details
-
create
Description copied from interface:GloballyScopedClusterVariableCreationCommandStep1Sets the name and value of the cluster variable.The variable value will be serialized to JSON format.
camundaClient .newGloballyScopedClusterVariableCreateRequest() .create("myVariable", "myValue") // for string values .send();- Specified by:
createin interfaceGloballyScopedClusterVariableCreationCommandStep1- Parameters:
name- the name of the variable. Must not be null or empty.value- the value of the variable. Must not be null. Will be serialized to JSON.- Returns:
- this builder for method chaining
-
kind
Description copied from interface:GloballyScopedClusterVariableCreationCommandStep1Sets the kind of the cluster variable (optional, defaults to JSON).- Specified by:
kindin interfaceGloballyScopedClusterVariableCreationCommandStep1- Parameters:
kind- the kind (JSON or SECRET_REFERENCE)- Returns:
- this builder for method chaining
-
metadata
Description copied from interface:GloballyScopedClusterVariableCreationCommandStep1Sets the metadata bag of the cluster variable (optional). Values must be strings or numbers.- Specified by:
metadatain interfaceGloballyScopedClusterVariableCreationCommandStep1- Parameters:
metadata- a map of metadata key to value- Returns:
- this builder for method chaining
-
requestTimeout
Description copied from interface:FinalCommandStepSets the request timeout for the command. The default request timeout can be configured usingCamundaClientBuilder.defaultRequestTimeout(Duration).- Specified by:
requestTimeoutin interfaceFinalCommandStep<CreateClusterVariableResponse>- Parameters:
requestTimeout- the request timeout- Returns:
- the configured command
-
send
Description copied from interface:FinalCommandStepSends the command to the Camunda gateway. This operation is asynchronous. In case of success, the future returns the event that was generated by the Camunda gateway in response to the command.Call
CamundaFuture.join()to wait until the response is available.Future<JobEventinvalid input: '>' future = command.send(); JobEvent event = future.join();- Specified by:
sendin interfaceFinalCommandStep<CreateClusterVariableResponse>- Returns:
- a future tracking state of success/failure of the command.
-