Package org.apache.agila.bpel.deployer.priv

Examples of org.apache.agila.bpel.deployer.priv.ActivityDeployer


    private void deployActivity(Element processElement, AgilaProcess tp) throws DeploymentException, TransactionException {
        String methodName = "deployActivity";
        Element activityElement = ActivityDeployer.getActivityElement(processElement);
        if (activityElement != null) {
            log.debug("<" + activityElement.getName() + ">");
            ActivityDeployer ad = ActivityDeployerFactory.getActivityDeployer(activityElement.getName());
            try {
                ad.deploy(activityElement, tp, new DeployerContext());
                log.debug("</" + activityElement.getName() + ">");
            } catch (DeploymentException e) {
                TransactionManager.rollbackTransaction();
                log.error("Transation Rolled Back due to " + e.getMessage());
                throw new DeploymentException(e);
View Full Code Here

TOP

Related Classes of org.apache.agila.bpel.deployer.priv.ActivityDeployer

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.