You can access the PageFlowScope from a backing bean, by getting the AdfFacesContext instance and calling its getPageFlowScope() method. This will return the Map of all objects stored in the PageFlowScope. To retrieve a specific object, call get() on the Map specifying the object identifier. Similarly, call the getViewScope() and getProcessScope() methods of the AdfFacesContext to retrieve the ViewScope and ProcessScope respectively.
Example:
// in the context of a backing bean
Object data = AdfFacesContext.getCurrentInstance().getPageFlowScope().get("objectID");
Context:
Backing Bean
Reference:
Oracle Fusion Middleware Java API Reference for Oracle ADF Faces, getPageFlowScope
But how to get objectID ?
ReplyDelete