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

io.takari.bpm.model.InclusiveGateway Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package io.takari.bpm.model;

public class InclusiveGateway extends ParallelGateway {
	
	private static final long serialVersionUID = 1L;

    public InclusiveGateway(String id) {
        super(id);
    }

    @Override
    public String toString() {
        return "InclusiveGateway (" + getId() + ")";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy