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

uk.co.mruoc.camunda.client.process.variable.AbstractVariable Maven / Gradle / Ivy

There is a newer version: 0.1.29
Show newest version
package uk.co.mruoc.camunda.client.process.variable;

import lombok.Data;
import lombok.RequiredArgsConstructor;

@RequiredArgsConstructor
@Data
public abstract class AbstractVariable implements Variable {

    private final String name;
    private final Object value;
    private final String type;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy