You can also try this below snippet to access Inherited Page properties
from Modelsimport com.day.cq.commons.inherit.InheritanceValueMap; import
com.day.cq.commons.inherit.HierarchyNodeInheritanceValueMap; @Inject
Page currentPage; ... InheritanceValueMap ivm = new
HierarchyNodeInheritanceValueMap(currentPage.getContentResource());
String inheritedValueMyCustomProperty =
ivm.getInherited("myCustomerProperty", String.class); String
inheritedValueJcrTitle = ivm.getInherited("jcr:title", String.cla...