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

cn.dustlight.flow.zeebe.services.adapters.AbstractZeebeProcessAdapter Maven / Gradle / Ivy

package cn.dustlight.flow.zeebe.services.adapters;

public abstract class AbstractZeebeProcessAdapter implements ZeebeProcessAdapter {

    private int order = 0;

    @Override
    public int getOrder() {
        return order;
    }

    public void setOrder(int order) {
        this.order = order;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy