blob: aeea48e10ece029d69fa08fe36ebc241550b692b [file] [log] [blame]
package org.eclipse.virgo.nano.core;
import java.util.Dictionary;
/**
* This Service exports the user region and kernel region configurations, so that
* they are available to bundles in the user region.
*
* <strong>Concurrent Semantics</strong><br />
* Implementations should be threadsafe.
*/
public interface ConfigurationExporter {
/**
* Retrieve user region configuration properties
*/
Dictionary<String, Object> getUserRegionConfigurationProperties();
/**
* Retrieve kernel region configuration properties
*/
Dictionary<String, Object> getKernelRegionConfigurationProperties();
}