Package org.springframework.webflow.mvc.portlet

Examples of org.springframework.webflow.mvc.portlet.PortletMvcView


    @Override
    protected AbstractMvcView createMvcView(View view, RequestContext context) {
        final ExternalContext externalContext = context.getExternalContext();
        final Object nativeRequest = externalContext.getNativeRequest();
        if (nativeRequest instanceof PortletRequest) {
            return new PortletMvcView(view, context);
        }
       
        return new ServletMvcView(view, context);
    }
View Full Code Here

TOP

Related Classes of org.springframework.webflow.mvc.portlet.PortletMvcView

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.