Expand my Community achievements bar.

July 31st AEM Gems Webinar: Elevate your AEM development to master the integration of private GitHub repositories within AEM Cloud Manager.
SOLVED

request attributes

Avatar

Level 4

Hi I am new to Adobe AEM.

 

I am going through carousel.jsp 's code. there I have seen (List list = (List)request.getAttribute("list");)

where this "list" attribute has been set? 

1 Accepted Solution

Avatar

Correct answer by
Level 10

The carousel component inherits the OOTB list component, as you can see in the properties of carousel component

      
sling:resourceSuperType
String
foundation/components/list

In line 37 carousel.jsp, ootb carousel is loading init.jsp, that is actually being loaded from /libs/foundation/components/list/init.jsp and which contains the code for set attribute

List list = new List(slingRequest, new PageFilter()); request.setAttribute("list", list);

View solution in original post

4 Replies

Avatar

Level 9

Actually, carousel component inherits list component and that's where the list is being set in the request object.

--

Jitendra

krishh_187 wrote...

Hi I am new to Adobe AEM.

 

I am going through carousel.jsp 's code. there I have seen (List list = (List)request.getAttribute("list");)

where this "list" attribute has been set? 

 

Avatar

Correct answer by
Level 10

The carousel component inherits the OOTB list component, as you can see in the properties of carousel component

      
sling:resourceSuperType
String
foundation/components/list

In line 37 carousel.jsp, ootb carousel is loading init.jsp, that is actually being loaded from /libs/foundation/components/list/init.jsp and which contains the code for set attribute

List list = new List(slingRequest, new PageFilter()); request.setAttribute("list", list);