Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the purpose of resourceResolver.adaptTo(Session.class) in Apache Sling?

Tags:

java

jcr

aem

sling

I am new to Apache Sling, CQ5, etc.

In our codebase, we have a code snippet similar to this:

void perform(SlingHttpServletRequest request, SlingHttpServletResponse response) {
    ResourceResolver resourceResolver = request.getResourceResolver();

    Session session = resourceResolver.adaptTo(Session.class);
    PageManager pageManager = resourceResolver.adaptTo(PageManager.class);
}

What's adapTo doing here?

Also is there a good documentation/user manual available I can read to get started using Sling, CQ5, etc.?

like image 601
TheFooProgrammer Avatar asked Feb 12 '14 00:02

TheFooProgrammer


1 Answers

The adaptTo() method found in many sling objects allows to "transform" objects. Sling could have decided to add a resolver.getSession() method, but that wouldn't have been very flexible. The nice thing about adaptTo is that is it dynamic. you can create adapters to transform between different types (they are OSGi services). Sling and CQ5 also include bunch of adapters by default. The sling Wiki has some docs about adapters.

About how to start with Sling and CQ5, the sling site is a good place to start

like image 81
santiagozky Avatar answered Sep 25 '22 14:09

santiagozky