// If the specified URL has a "javax.portlet.faces.DirectLink" parameter with a value of
// "false", then remove it from the map of parameters as required by the Bridge Spec.
String directLinkParam = bridgeActionURL.getParameter(Bridge.DIRECT_LINK);
if (BooleanHelper.isFalseToken(directLinkParam)) {
bridgeActionURL.removeParameter(Bridge.DIRECT_LINK);
}
if (!bridgeActionURL.isAbsolute() && !targetFacesView.isExtensionMapped() &&
!targetFacesView.isPathMapped() && !url.startsWith(StringPool.POUND)) {
bridgeActionURL.setParameter(Bridge.NONFACES_TARGET_PATH_PARAMETER, contextRelativeViewPath);