Package com.liferay.faces.bridge.context.url.liferay

Examples of com.liferay.faces.bridge.context.url.liferay.BridgeResourceURLLiferayImpl


  @Override
  public BridgeResourceURL getBridgeResourceURL(String url, String currentFacesViewId, BridgeContext bridgeContext) {

    if (PortletContainerDetector.isLiferayPortletRequest(bridgeContext.getPortletRequest())) {
      return new BridgeResourceURLLiferayImpl(url, currentFacesViewId, bridgeContext);
    }
    else {
      return new BridgeResourceURLImpl(url, currentFacesViewId, bridgeContext);
    }
  }
View Full Code Here

TOP

Related Classes of com.liferay.faces.bridge.context.url.liferay.BridgeResourceURLLiferayImpl

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.