Examples of BridgeDefaultViewNotSpecifiedException


Examples of javax.portlet.faces.BridgeDefaultViewNotSpecifiedException

                                      + "." + Bridge.DEFAULT_VIEWID_MAP);
      viewId = m.get(requestedMode);
      if (viewId == null)
      {
        // If no defaultview then throw an exception
        throw new BridgeDefaultViewNotSpecifiedException();
      }

      log("PortletExternalContextImpl.getViewId: jsf target viewId not found, defaulting to: " + viewId);
    }
View Full Code Here

Examples of javax.portlet.faces.BridgeDefaultViewNotSpecifiedException

              viewIdAndQueryString = getDefaultViewIdMap().get(currentPortletMode.toString());
              logger.debug("portlet.xml viewId=[{0}] portletMode=[{1}]", viewIdAndQueryString,
                currentPortletMode);

              if (viewIdAndQueryString == null) {
                throw new BridgeDefaultViewNotSpecifiedException();
              }
            }
            else {
              logger.debug("request parameter {0}=[{1}]", requestParameterName, viewIdAndQueryString);
            }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.