The customer noticed their search query was not giving the expected results. The following query is being used:
select * from [dam:Asset]
where isdescendantnode('/content/dam/customerFolder')
AND [jer:content/dateModified] >= CAST("2024-01-01T00:00:00.000Z")
Answer : B
A developer is using the Oak query engine.
Which query language is recommended?
Answer : C
What is the correct way to implement the OSGi service class for this interface?
public interface SimpleService {
String getMessage();
}
A)
@Component(service = SimpleService.class, immediate = true)
public class SimpleServiceImpl extends SimpleService {
@Override
public String getMessage() {
return "Hello from SimpleService!";
}
}
B)
@Component(service = MySimpleService.class, immediate = true)
public class SimpleServiceImpl implements SimpleService {
@Override
public String getMessage() {
}
}
C)
@Component(service = MySimpleService.class, immediate = true)
public class SimpleServiceImpl implements SimpleService {
@Override
public String getMessage() {
return "Hello from SimpleService!";
}
}
D)
@Component(service = SimpleService.class, immediate = true)
public class SimpleServiceImpl implements SimpleService {
@Override
public String getMessage() {
return "Hello from SimpleService!";
}
}
Answer : D
The customer has a requirement to fetch images from a custom folder (folder1) which were modified on/after 1 January 2024.
How would the Adobe Experience Manager Developer write the query to get the requested data?
Answer : B
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?
Answer : A
From which source environment can content be copied to Stage using Content sets in Cloud Manager?
Answer : C
A customer has the requirement to use SAML authentication on AEM using their SAML 2.0 compatible IDP.
Example:
AEM: www.wknd.com/content/siteB/index.html
IDP: https://www.idpB.com
How should an AEM Developer configure their SAML Authentication Handler?
Answer : B