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

io.camunda.tasklist.dto.Variable Maven / Gradle / Ivy

The newest version!
package io.camunda.tasklist.dto;

public class Variable {
  private String id;

  private String name;

  private Object value;

  private VariableType type;

  public String getId() {
    return id;
  }

  public void setId(String id) {
    this.id = id;
  }

  public String getName() {
    return name;
  }

  public void setName(String name) {
    this.name = name;
  }

  public Object getValue() {
    return value;
  }

  public void setValue(Object value) {
    this.value = value;
  }

  public VariableType getType() {
    return type;
  }

  public void setType(VariableType type) {
    this.type = type;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy