Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

Not able to extends PageImpl.java from Core Components

Avatar

Level 3

Hello,

 

I have to extend the existing implementation of com.adobe.cq.wcm.core.components.internal.models.v2.PageImpl, because I have to provide an additional css class to getCssClassNames method based on some settings in page properties. But its not possible to extend this class because this class is in the "internal" package. And as I know this will not be exported to other OSGi bundles.

 

For me this means, I have to copy the code from v2.PageImpl and v1.PageImpl and all other used classes which are also in "internal" package to my project. In my opinion this kind of implementation of core components does not make any sense, because it blocks developers to reuse existing code.

 

Or does somebody have a solution for this problem?

 

regards

Reini

1 Accepted Solution

Avatar

Correct answer by
Level 4

Hello @Reini- 

Since core implemented classes are in the internal package, you can't extend these classes into your package.
This is expected behavior, you can get more info about this limitation here https://github.com/adobe/aem-core-wcm-components/issues/503
I would suggest here, you don't need to copy all the code from the core implementation class (PageImpl.java),
you can use the Delegation pattern for sling models. For this, you have to write a model class and  you can add you're own methods something like below

public class MyPageImpl implements Page  {

  @Deleted Account
@Via(type = ResourceSuperType.class)
private Page page;  // here you'll get the actual implementation class of PageImpl

@Override
public String getAppResourcesPath() {
return page.appResourcesPath;
}


public String getCssClassNames() {
return "my-css-class-name"
}

}

You've to use this model in your HTL file and you're component must inherit from the core page component.


Thanks,

Venkat.M

View solution in original post

5 Replies

Avatar

Employee Advisor

Hi,

It is the decision of the core component team to hide the implementation classes. My recommendation is to have that discussion at the core components repository at https://github.com/adobe/aem-core-wcm-components/issues.

You get the best answers there for this question.

Avatar

Correct answer by
Level 4

Hello @Reini- 

Since core implemented classes are in the internal package, you can't extend these classes into your package.
This is expected behavior, you can get more info about this limitation here https://github.com/adobe/aem-core-wcm-components/issues/503
I would suggest here, you don't need to copy all the code from the core implementation class (PageImpl.java),
you can use the Delegation pattern for sling models. For this, you have to write a model class and  you can add you're own methods something like below

public class MyPageImpl implements Page  {

  @Deleted Account
@Via(type = ResourceSuperType.class)
private Page page;  // here you'll get the actual implementation class of PageImpl

@Override
public String getAppResourcesPath() {
return page.appResourcesPath;
}


public String getCssClassNames() {
return "my-css-class-name"
}

}

You've to use this model in your HTL file and you're component must inherit from the core page component.


Thanks,

Venkat.M

Avatar

Community Advisor

@Reini- if you want to inject any new css classes, please use page level style system which is OOTB. Refer to below community post for reference:

 

https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/don-t-understand-cssclassn...

Avatar

Community Advisor

You have to extend the interface, not the actual implementation as suggested by @vmadala 



Arun Patidar