Examples of ConfigPersistenceBackendService


Examples of org.openengsb.core.api.persistence.ConfigPersistenceBackendService

        setupConfigPersistenceService(pid, properties);
    }

    @SuppressWarnings({ "rawtypes", "unchecked" })
    private void setupConfigPersistenceService(String pid, Dictionary properties) throws ConfigurationException {
        ConfigPersistenceBackendService backendService = retrieveBackendService(properties);
        DefaultConfigPersistenceService configPersistenceService = new DefaultConfigPersistenceService(backendService);
        Dictionary exportProperties = new Hashtable();
        exportProperties.put(Constants.CONFIGURATION_ID, properties.get(Constants.CONFIGURATION_ID));
        ServiceRegistration registration =
            bundleContext.registerService(ConfigPersistenceService.class.getName(), configPersistenceService,
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.