Exam AD0-E103 All QuestionsBrowse all questions from this exam
Question 17

An OSGi bundle Activator.java is registered through a service DevelopInfo.java

DeveloperInfo.java -

Activator.java -

Maven install generates an error during deployment. Refer to the error information below:

Which action should the developer take to resolve the build error?

    Correct Answer: C

    The error message indicates that the class com.adobe.training.core.Activator is not assignable to the specified service com.adobe.training.core.DeveloperInfo. This means that the Activator class needs to implement the DeveloperInfo interface to be assignable to it. By implementing the interface, the class will be correctly registered as the service, resolving the build error.

Discussion
chunpinOption: C

Answer: C

subbaOption: C

Answer C