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

cn.dustlight.flow.zeebe.ZeebeProperties Maven / Gradle / Ivy

package cn.dustlight.flow.zeebe;

import lombok.Getter;
import lombok.Setter;
import org.springframework.boot.context.properties.ConfigurationProperties;

import java.util.HashSet;
import java.util.Set;

@Getter
@Setter
@ConfigurationProperties(prefix = "dustlight.flow.zeebe")
public class ZeebeProperties {

    private String address = "localhost:26500";
    private boolean plaintext = true;
    private String processIndex = "zeebe-record-process";
    private Set systemPrefix = new HashSet<>();

    private String userTaskFormKeyPrefix = "camunda-forms:bpmn:";
    private String userTaskIndex = "flow-user-task";
    private boolean enableUserTaskWorker = true;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy