in cdi-extender/src/main/java/org/apache/aries/cdi/container/internal/model/ExtendedComponentInstanceDTO.java [118:135]
public final boolean configurationsResolved() {
for (ConfigurationTemplateDTO template : template.configurations) {
if (template.policy == ConfigurationPolicy.REQUIRED) {
// find a configuration snapshot or not resolved
boolean found = false;
for (ConfigurationDTO snapshot : configurations) {
if (snapshot.template == template) {
found = true;
}
}
if (!found) {
return false;
}
}
}
return true;
}