I think i've found a bug with AEM6. I have a custom property on parent page named "clientName". Inside of my component class which extends WCMUse, i'm trying to utilize getInheritedProperties().get("clientName", String.class) to return the client name, however, the value is never found and a null is returned. If i do the same but with a standard property like "jcr:title", the correct value is returned.
If i however use ${inheritedPageProperties.clientName} or the older WCMUtils.getInheritedProperty method - the value of "clientName" is correctly returned.
Is this a known issue?