Package org.apache.myfaces.extensions.cdi.jsf.impl.config.view

Examples of org.apache.myfaces.extensions.cdi.jsf.impl.config.view.PageParameterContext


            }
        }

        if(addPageParameter)
        {
            PageParameterContext pageParameterContext =
                    CodiUtils.getContextualReferenceByClass(PageParameterContext.class, true);

            if(pageParameterContext != null)
            {
                for(Map.Entry<String, String> entry : pageParameterContext.getPageParameters().entrySet())
                {
                    //TODO add multi-value support - see comment in PageParameterContext
                    result.add(new RequestParameter(entry.getKey(), new String[] {entry.getValue()}));
                }
            }
View Full Code Here


            }
        }

        if(addPageParameter)
        {
            PageParameterContext pageParameterContext =
                    CodiUtils.getContextualReferenceByClass(PageParameterContext.class, true);

            if(pageParameterContext != null)
            {
                for(Map.Entry<String, String> entry : pageParameterContext.getPageParameters().entrySet())
                {
                    //TODO add multi-value support - see comment in PageParameterContext
                    result.add(new RequestParameter(entry.getKey(), new String[] {entry.getValue()}));
                }
            }
View Full Code Here

TOP

Related Classes of org.apache.myfaces.extensions.cdi.jsf.impl.config.view.PageParameterContext

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.