Package com.liferay.faces.bridge.config

Examples of com.liferay.faces.bridge.config.BridgeConfigFactory


  public BridgePhaseBaseImpl(PortletConfig portletConfig) {
    this.portletConfig = portletConfig;
    this.portletContext = portletConfig.getPortletContext();
    this.portletName = portletConfig.getPortletName();

    BridgeConfigFactory bridgeConfigFactory = (BridgeConfigFactory) FactoryExtensionFinder.getFactory(
        BridgeConfigFactory.class);
    this.bridgeConfig = bridgeConfigFactory.getBridgeConfig(portletConfig);

    // Initialize the incongruity context implementation.
    IncongruityContextFactory incongruityContextFactory = (IncongruityContextFactory) FactoryExtensionFinder
      .getFactory(IncongruityContextFactory.class);
    this.incongruityContext = incongruityContextFactory.getIncongruityContext();
View Full Code Here


    PortletSession portletSession = portletRequest.getPortletSession();
    String sessionId = portletSession.getId();
    this.idPrefix = portletName + ":::" + sessionId + ":::";
    this.idSuffix = Long.toString(this.dateCreated);

    BridgeConfigFactory bridgeConfigFactory = (BridgeConfigFactory) FactoryExtensionFinder.getFactory(
        BridgeConfigFactory.class);
    BridgeConfig bridgeConfig = bridgeConfigFactory.getBridgeConfig(portletConfig);
    this.excludedAttributeNames = new ArrayList<String>();

    // Get the list of excluded BridgeRequestScope attributes from the faces-config.xml descriptors.
    Set<String> facesConfigExcludedAttributeNames = bridgeConfig.getExcludedRequestAttributes();
View Full Code Here

TOP

Related Classes of com.liferay.faces.bridge.config.BridgeConfigFactory

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.