Given a hierarchy of CAC configurations defined at multiple levels, for
example: /content /en +{CAC1} /animals /dogs +{CAC2} /hound /bloodhound
/dachshund /poodle /cats /de Suppose that I have the resource for
`bloodhound` and then I do:ConfigurationBuilder builder =
resource.adaptTo(ConfigurationBuilder.class);myConfig =
builder.as(MyConfig.class);I can access the configuration properties as
needed, but how to get the path where the actual configuration is
defined which in this case would be pa...