Package org.jbpm.process.workitem.bpmn2

Examples of org.jbpm.process.workitem.bpmn2.ServiceTaskHandler


    public void executeWorkItem(WorkItem workItem, WorkItemManager manager) {
        String implementation = getImplementation(workItem.getParameters());
        if (IMPLEMENTATION_SWITCHYARD.equalsIgnoreCase(implementation)) {
            super.executeWorkItem(workItem, manager);
        } else {
            ServiceTaskHandler sth;
            ProcessRuntime runtime = getProcessRuntime();
            if (runtime instanceof KieSession) {
                sth = new ServiceTaskHandler((KieSession)runtime);
            } else {
                sth = new ServiceTaskHandler();
            }
            sth.setClassLoader(getClass().getClassLoader());
            sth.executeWorkItem(workItem, manager);
        }
    }
View Full Code Here

TOP

Related Classes of org.jbpm.process.workitem.bpmn2.ServiceTaskHandler

Copyright © 2018 www.massapicom. 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.