Hi,
Can you elaborate on what you need? You could simply do this by getting the Page's properties, something like this:
Page currentPage = pageManager.getContainedPage(resourceResolver.getResource("/content/mysite/en"));
if (currentPage != null) {
// Get properties
String template = page.getProperties().get("cq:template", String.class);
String title = page.getProperties().get("jcr:title", String.class);
String isActive = page.getProperties().get("cq:lastReplicationAction", String.class);
}
Hope this helps
Esteban Bustamante