blob: af8b9a7e43e032ef76af142d66bd03e1c0905cf4 [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 getUserRegionConfigurationProperties();
/**
* Retrieve kernel region configuration properties
*/
Dictionary getKernelRegionConfigurationProperties();
}