All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.activiti.spring.autodeployment.FailOnNoProcessAutoDeploymentStrategy Maven / Gradle / Ivy

There is a newer version: 7.1.0.M6
Show newest version
package org.activiti.spring.autodeployment;

import org.activiti.engine.ActivitiException;
import org.activiti.engine.RepositoryService;
import org.activiti.engine.repository.DeploymentBuilder;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.core.io.Resource;

public class FailOnNoProcessAutoDeploymentStrategy extends AbstractAutoDeploymentStrategy {

    protected static final Logger LOGGER = LoggerFactory.getLogger(FailOnNoProcessAutoDeploymentStrategy.class);

    public static final String DEPLOYMENT_MODE = "fail-on-no-process";

    @Override
    protected String getDeploymentMode() {
        return DEPLOYMENT_MODE;
    }

    @Override
    public void deployResources(String deploymentNameHint, Resource[] resources, RepositoryService repositoryService) {
        final DeploymentBuilder deploymentBuilder = repositoryService.createDeployment().enableDuplicateFiltering()
                .name(deploymentNameHint);

        int validProcessCount = 0;
        for (final Resource resource : resources) {
            final String resourceName = determineResourceName(resource);

            if (validateModel(resource, repositoryService)) {
                validProcessCount++;
                deploymentBuilder.addInputStream(resourceName, resource);
            } else {
                LOGGER.error("The following resource wasn't included in the deployment since it is invalid: ",
                        resourceName);
            }
        }

        if (validProcessCount != 0) {
            deploymentBuilder.deploy();
        } else {
            throw new ActivitiException("No process definition was deployed.");
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy