Package org.activiti.spring.autodeployment

Examples of org.activiti.spring.autodeployment.ResourceParentFolderAutoDeploymentStrategy


    private final String parentFilename2 = "parentFilename2";

    @Before
    public void before() throws Exception {
        super.before();
        classUnderTest = new ResourceParentFolderAutoDeploymentStrategy();
        assertNotNull(classUnderTest);

        when(parentFile1Mock.getName()).thenReturn(parentFilename1);
        when(parentFile1Mock.isDirectory()).thenReturn(true);
        when(parentFile2Mock.getName()).thenReturn(parentFilename2);
View Full Code Here


    public SpringProcessEngineConfiguration() {
        this.transactionsExternallyManaged = true;
        deploymentStrategies.add(new DefaultAutoDeploymentStrategy());
        deploymentStrategies.add(new SingleResourceAutoDeploymentStrategy());
        deploymentStrategies.add(new ResourceParentFolderAutoDeploymentStrategy());
    }
View Full Code Here

TOP

Related Classes of org.activiti.spring.autodeployment.ResourceParentFolderAutoDeploymentStrategy

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.