Your page contains the following code that is invoked on an action by the current user:<af:setPropertyListener from="#{applicant:surname}" to="#(...)" type="action"/>To receive the value from the to property of the af:setPropertyListener, you create a managed bean as follows: package view; public class Employee {String lastName;public void setLastName(String lastName) { this.lastName = lastName; } public String getLastName() { return lastName;}In the adfc-onfig.xml file, the managed bean is configured as:><managed-bean><managed-bean-name>emp</managed-bean-name><managed-bean-class>view. Employee</managed-bean-class><managed bean-scope>pageFlowScope</managed-bean-scope></managed-bean>What EL expression would you write in the af:setPropertyListener "to" property to write the value to the lastName string of the Employee class?(Choose the best answer.)
Consider the following code:At run time, a user modifies the value in the af:inputText control, then presses af:commandButton.Assuming no errors are raised, which option represents the managed bean code invoked in the correct order? (Choose the best answer.)
Which three options does an entity object automatically implement? (Choose three.)
You create a new ADF Faces page called emp.js and bind some data controls to that page. You notice a file called empPageDef.xml. What is this file for?(Choose the best answer.)
Which three steps would you perform to enable security for an ADF application? (Choose three.)
Which statement is true about the use of data controls in JSF? (Choose the best answer.)