Skip to content

Instantly share code, notes, and snippets.

@biemond
Created September 28, 2011 18:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save biemond/1248782 to your computer and use it in GitHub Desktop.
Save biemond/1248782 to your computer and use it in GitHub Desktop.
AdfFacesContext and ADF
// AdfFacesContext
AdfFacesContext adfFacesCtx = AdfFacesContext.getCurrentInstance();
// PPR
adfFacesCtx.addPartialTarget(input);
// get the PageFlowScope Params
Map<String, Object> scopePageFlowScopeVar= adfFacesCtx.getPageFlowScope();
// get the viewScope Params
Map<String, Object> scopeViewScopeVar= adfFacesCtx.getViewScope();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment