Package org.glassfish.hk2.api
Interface DynamicConfigurationService
-
- All Known Implementing Classes:
DynamicConfigurationServiceImpl
@Contract public interface DynamicConfigurationService
The dynamic configuration service is the source ofDynamicConfiguration
instances, which can be used to bind and unbind entities into the system- Author:
- jwells
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DynamicConfiguration
createDynamicConfiguration()
Creates a dynamic configuration that can be used to add or remove values to the systemPopulator
getPopulator()
Returns a populator for this service locator that can be used to automatically read in hk2 inhabitant files (or some other external source)
-
-
-
Method Detail
-
createDynamicConfiguration
DynamicConfiguration createDynamicConfiguration()
Creates a dynamic configuration that can be used to add or remove values to the system- Returns:
- A dynamic configuration to be used to add values to the system
-
getPopulator
Populator getPopulator()
Returns a populator for this service locator that can be used to automatically read in hk2 inhabitant files (or some other external source)- Returns:
- A non-null populator that can be used to fill in a
ServiceLocator
-
-