Package org.jboss.portletbridge.util

Examples of org.jboss.portletbridge.util.FacesConfig


    if (null != excluded) {
      for (String name : excluded) {
        excludedAttributes.add(new ExcludedRequestAttribute(name));
      }
    }
    FacesConfig facesConfig = new FacesConfig();
    facesConfig.parse(portletContext);
    excluded = facesConfig.getExcludedAttributes();
    if (null != excluded) {
      for (String name : excluded) {
        excludedAttributes.add(new ExcludedRequestAttribute(name));
      }
    }
View Full Code Here


    String maxScopesParameter = portletContext.getInitParameter(Bridge.MAX_MANAGED_REQUEST_SCOPES);
    if (null != maxScopesParameter) {
      numberOfRequestScopes = Integer.parseInt(maxScopesParameter);
    }

    FacesConfig facesConfig = new FacesConfig();
    facesConfig.parse(portletContext);
    excluded = facesConfig.getExcludedAttributes();
    if (null != excluded) {
      for (String name : excluded) {
        excludedAttributes.add(new ExcludedRequestAttribute(name));
      }
    }
    publicParameterMapping = facesConfig.getParameterMapping();
    // Get preserve action parameters flag
    Boolean preserveParams = (Boolean) portletContext
        .getAttribute(bridgeParametersPrefix
            + Bridge.PRESERVE_ACTION_PARAMS);
    this.preserveActionParams = Boolean.TRUE.equals(preserveParams);
View Full Code Here

TOP

Related Classes of org.jboss.portletbridge.util.FacesConfig

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.