Examples of HumanTaskActivitySimulator


Examples of org.jbpm.simulation.impl.simulators.HumanTaskActivitySimulator

    private Map<Class<? extends Node>, ActivitySimulator> simulators = new HashMap<Class<? extends Node>, ActivitySimulator>();
   
    protected SimulationRegistry() {
        simulators.put(StartNode.class, new StartEventSimulator());
        simulators.put(EndNode.class, new EndEventSimulator());
        simulators.put(HumanTaskNode.class, new HumanTaskActivitySimulator());
        simulators.put(Split.class, new GatewaySimulator());
        simulators.put(Join.class, new GatewaySimulator());
        simulators.put(EventNode.class, new EventSimulator());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.