Package org.openengsb.core.persistence.internal

Examples of org.openengsb.core.persistence.internal.DefaultPersistenceManager


        registerServiceViaId(service, "workflowService", WorkflowService.class);
        setupDomainsAndOtherServices();
    }

    private void setupTaskbox() {
        DefaultPersistenceManager persistenceManager = new DefaultPersistenceManager();
        persistenceManager.setPersistenceRootDir("target/" + UUID.randomUUID().toString());
        TaskboxServiceImpl taskboxServiceImpl = new TaskboxServiceImpl();
        taskboxServiceImpl.setPersistenceManager(persistenceManager);
        taskboxServiceImpl.setBundleContext(bundleContext);
        taskboxServiceImpl.init();
        taskboxServiceImpl.setWorkflowService(service);
View Full Code Here

TOP

Related Classes of org.openengsb.core.persistence.internal.DefaultPersistenceManager

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.