Package org.jbpm.integration.spi

Examples of org.jbpm.integration.spi.DeploymentRef


        JBPMDeploymentMetaData md = new JBPMDeploymentMetaData();
        md.setClassloader(subDeployment.localCl);
        md.setWatch(rootDeployment.watch);
        md.setProcessDescriptor(subDeployment.url);

        DeploymentRef deploymentRef;

        try
        {
          deploymentRef = adaptor.deploy(md);
          deploymentRefs.add(deploymentRef);
View Full Code Here


    // associate classloader
    deployment.setClassloader(unit.getClassLoader());

    try
    {
      DeploymentRef deploymentRef = adaptor.deploy(deployment);
      // TODO: mark the process 'ready', classloader assoc
      unit.addAttachment("jbpm.deployment.ref", deploymentRef);
    }
    catch (Throwable t)
    {     
View Full Code Here

  public void undeploy(DeploymentUnit unit, JBPMDeploymentMetaData deployment)
  {
    log.info("Undeploy "+deployment);

    DeploymentRef deploymentRef =
        (DeploymentRef)unit.getAttachment("jbpm.deployment.ref");

    if(null==deploymentRef)
    {
      log.info("Failed to retrieve process reference information. Ignore undepoyment call: "+ deployment);
View Full Code Here

TOP

Related Classes of org.jbpm.integration.spi.DeploymentRef

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.