I'm using OSGi ConfigurationAdmin to return a list of configurations:
Configuration[] configurations = configAdmin.listConfigurations(null);
I can then iterate through that list to get the Persistent IDs (group of configuration properties):
for (Configuration configuration : configurations) {
System.out.println(configuration.getPid());
}
How do i now iterate through the properties in each PID/Configuration?