in src/main/java/org/apache/sling/caconfig/management/impl/ValueInfoImpl.java [158:174]
public boolean isOverridden() {
if (contextResource == null) {
return false;
}
if (isAllOverridden) {
return true;
}
Map<String,Object> overrideProperties = configurationOverrideMultiplexer.overrideProperties(
contextResource.getPath(), configName, Collections.<String,Object>emptyMap());
if (overrideProperties != null) {
return overrideProperties.containsKey(name)
|| (getValue() != null && effectiveValue == null);
}
else {
return false;
}
}