Package org.jbpm.kie.services.api

Examples of org.jbpm.kie.services.api.DeployedUnit


     * @param deploymentId unique identifier of unit (kjar)
     * @return null if no RuntimeManager available for given id
     */
    public RuntimeManager getRuntimeManager(String deploymentId) {
       
        DeployedUnit deployedUnit = deploymentService.getDeployedUnit(deploymentId);
        if (deployedUnit == null) {
            return null;
        }
       
        return deployedUnit.getRuntimeManager();
    }
View Full Code Here

TOP

Related Classes of org.jbpm.kie.services.api.DeployedUnit

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.