All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uk.co.mruoc.camunda.client.variable.JsonVariable Maven / Gradle / Ivy

package uk.co.mruoc.camunda.client.variable;

import org.camunda.spin.json.SpinJsonNode;

public class JsonVariable extends AbstractVariable {

    public JsonVariable(String name, SpinJsonNode value) {
        this(name, value.toString());
    }

    public JsonVariable(String name, String value) {
        super(name, value, "json");
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy