A customer needs to create a user and due to security reasons, that user can only have access to /content/foo and none of the child nodes.
How should the Adobe Experience Manager Developer implement permission restrictions on the /content/foo node to meet this requirement?
A customer added a custom property foo:bar to all assets. Once the property is added, the customer needs to run the following query:
select * from [dam:Asset] where isdescendantnode('/content') and [foo:bar] ="Hello"
How would the customer update the indexes to make sure the query is not a traversal query?
What is the correct way to implement the OSGi service class for this interface?
public interface SimpleService {
String getMessage();
}
Options:
A customer is required to fetch only jcr:title property for pages created using the homepage template.
How would the developer write the query using QueryBuilder API?