Package org.primefaces.context

Examples of org.primefaces.context.RequestContextImpl


  public void afterPhase(PhaseEvent event) {
    FacesContext facesContext = event.getFacesContext();
    Map<String,String> params = facesContext.getExternalContext().getRequestParameterMap();
   
    //Setup Request Context
    new RequestContextImpl(facesContext.getExternalContext());
   
    //Handle partial view process
    boolean isPartialViewProcess = params.containsKey(Constants.PARTIAL_PROCESS_PARAM) && !params.get(Constants.PARTIAL_PROCESS_PARAM).equals("@all");
   
    if(isPartialViewProcess) { 
View Full Code Here

TOP

Related Classes of org.primefaces.context.RequestContextImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.