org.springframework.mock.web
Class MockRequestDispatcher

java.lang.Object
  extended by org.springframework.mock.web.MockRequestDispatcher
All Implemented Interfaces:
RequestDispatcher

public class MockRequestDispatcher
extends Object
implements RequestDispatcher

Mock implementation of the RequestDispatcher interface.

Used for testing the web framework; typically not necessary for testing application controllers.

Since:
1.0.2
Author:
Rod Johnson, Juergen Hoeller

Constructor Summary
MockRequestDispatcher(String url)
           
 
Method Summary
 void forward(ServletRequest servletRequest, ServletResponse servletResponse)
           
 void include(ServletRequest servletRequest, ServletResponse servletResponse)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MockRequestDispatcher

public MockRequestDispatcher(String url)
Method Detail

forward

public void forward(ServletRequest servletRequest,
                    ServletResponse servletResponse)
Specified by:
forward in interface RequestDispatcher

include

public void include(ServletRequest servletRequest,
                    ServletResponse servletResponse)
Specified by:
include in interface RequestDispatcher


Copyright (c) 2002-2005 The Spring Framework Project.