What is causing this?

You are debugging a problem resulting from a recently deployed around plugin. The plugin is intercepting the doSomething method. The aroundDoSomething plugin method is called successfully, but the original doSomething method is no longer being executed as expected.
What is causing this?
A. The sort order of the plugin is too high and supersedes the priority of the intercepted method
B. The plugin implementation returned something other than its callable argument
C. The plugin implementation is skipping the execution of its callable argument
D. The plugin implementation overlooked using the AbstractPlugin parent class

Download Printable PDF. VALID exam to help you PASS.

5 thoughts on “What is causing this?

  1. Correct answer should be C because callable argument of around plugin can stop execution of all other plugin methods.

    1. One part of the statement is wrong here that I mentioned. Correct statement is: If the around method does not call the callable, it will prevent the execution of all the plugins next in the chain and the original method call.
      So for this reason, the ans should be C.

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.