Package org.jbpm.factories

Source Code of org.jbpm.factories.ProcessInstanceFactory

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.jbpm.factories;

import org.jbpm.api.ProcessDefinition;
import org.jbpm.api.ProcessInstance;
import org.jbpm.api.impl.ProcessInstanceImpl;

/**
*
* @author salaboy
*/
public class ProcessInstanceFactory {
    public static ProcessInstance newProcessInstance(ProcessDefinition process){
        ProcessInstance instance = new ProcessInstanceImpl(process);
        return instance;
    }
}
TOP

Related Classes of org.jbpm.factories.ProcessInstanceFactory

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.