Package org.apache.isis.viewer.wicket.viewer.integration.wicket

Examples of org.apache.isis.viewer.wicket.viewer.integration.wicket.WebRequestCycleForIsis


    @Test
    public void testIsisWebRequestCycle() {
        final WebApplication mockApplication = context.mockAndIgnoreAnyInteraction(WebApplication.class);
        final WebRequest mockRequest = context.mock(WebRequest.class);
        final Response mockResponse = context.mock(Response.class);
        new WebRequestCycleForIsis(mockApplication, mockRequest, mockResponse);
    }
View Full Code Here


            final String webInfDir = getServletContext().getRealPath("/WEB-INF");
            loggingConfigurer.configureLogging(webInfDir, new String[0]);
   
            getRequestCycleSettings().setRenderStrategy(RenderStrategy.REDIRECT_TO_RENDER);
   
            getRequestCycleListeners().add(new WebRequestCycleForIsis());
   
            getResourceSettings().setParentFolderPlaceholder("$up$");
           
            determineDeploymentTypeIfRequired();
           
View Full Code Here

        // 6.0.0 rather than overriding getRequestCycleSettings
        // TODO: reinstate REDIRECT_TO_RENDER once WICKET-4773 implemented (Wicket 6.1.0)
        getRequestCycleSettings().setRenderStrategy(RenderStrategy.REDIRECT_TO_BUFFER);
        // 6.0.0 instead of subclassing newRequestCycle
        getRequestCycleListeners().add(new WebRequestCycleForIsis());



        getResourceSettings().setParentFolderPlaceholder("$up$");
        final DeploymentType deploymentType = determineDeploymentType();
View Full Code Here

TOP

Related Classes of org.apache.isis.viewer.wicket.viewer.integration.wicket.WebRequestCycleForIsis

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.