Hi community,
i am receiving these errors:
during the cloud manager deployment raised as Critical Bugs with rule CQRules:CQBP-84.
Any suggestions about this?
As per now i am receiving D rating for that.
I tried to upgrade the version from 3.6.0 to 3.6.6 and 3.6.8 in my POM file and did deployment, issues are not getting resolved.
<dependency>
<groupId>org.apache.jackrabbit.vault</groupId>
<artifactId>org.apache.jackrabbit.vault.rcp</artifactId>
<version>3.6.0</version>
</dependency>
Thanks in Advance..
Solved! Go to Solution.
Views
Replies
Total Likes
@thanikon After reading the error again. I believe it is self explanatory. Both org.apache.jackrabbit.api.security.JackrabbitAccessControlPolicy and org.apache.jackrabbit.api.security.JackrabbitAccessControlEntry are annotated by @ProviderType and cannot be implemented via custom code.
This has been answered here as well:
https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/cqrules-cqbp-84-archetype-...
I believe you are trying to implement dynamic or custom ACLs via Code. This is not recommended on AEMaaCS, due to container deployment and the arch design of AEM on a Cloud. It is recommended to use Repoinit scripts which gets executed everytime a container shuts down and another goes up, and a build image is propagated.
https://experienceleague.adobe.com/docs/experience-manager-cloud-service/content/implementing/deploy...
If my assumption is incorrect, kindly share the piece of code mentioned above.
Thanks for your response @krati_garg . In our assets implementation projects we have custom implementation for upload and update files. But in the servlet code there is no ACL specific code changes.
Thanks,
@thanikon After reading the error again. I believe it is self explanatory. Both org.apache.jackrabbit.api.security.JackrabbitAccessControlPolicy and org.apache.jackrabbit.api.security.JackrabbitAccessControlEntry are annotated by @ProviderType and cannot be implemented via custom code.
This has been answered here as well:
https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/cqrules-cqbp-84-archetype-...