Package org.jasig.portal.api.portlet

Examples of org.jasig.portal.api.portlet.PortletDelegationDispatcher.doServeResource()


                delegationResponse = requestDispatcher.doRender((RenderRequest)portletRequest, (RenderResponse)portletResponse, delegationRequest);
            }
        }      
        else if (PortletRequest.RESOURCE_PHASE.equals(phase)){
            this.logger.debug("Delegating ResourceRequest and {}", delegationRequest);
            delegationResponse = requestDispatcher.doServeResource((ResourceRequest)portletRequest, (ResourceResponse)portletResponse, delegationRequest);
        }
        else {
            throw new UnsupportedOperationException("Portlet lifecycle phase " + phase + " is not supported by the delegation view");
        }
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.