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

org.kie.kogito.examples.demo.PersonsProcessInstance Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
package org.kie.kogito.examples.demo;

public class PersonsProcessInstance extends org.kie.kogito.process.impl.AbstractProcessInstance {

    public PersonsProcessInstance(org.kie.kogito.examples.demo.PersonsProcess process, PersonsModel value, org.kie.api.runtime.process.ProcessRuntime processRuntime) {
        super(process, value, processRuntime);
    }

    protected java.util.Map bind(PersonsModel variables) {
        return variables.toMap();
    }

    protected void unbind(PersonsModel variables, java.util.Map vmap) {
        variables.fromMap(this.id(), vmap);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy