org.jboss.seam.mock
Class MockRequestDispatcher
java.lang.Object
org.jboss.seam.mock.MockRequestDispatcher
- All Implemented Interfaces:
- javax.servlet.RequestDispatcher
public class MockRequestDispatcher
- extends Object
- implements javax.servlet.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
|
Method Summary |
void |
forward(javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response)
|
protected EnhancedMockHttpServletResponse |
getMockHttpServletResponse(javax.servlet.ServletResponse response)
Obtain the underlying EnhancedMockHttpServletResponse,
unwrapping HttpServletResponseWrapper decorators if necessary. |
void |
include(javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response)
|
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
MockRequestDispatcher
public MockRequestDispatcher(String url)
- Create a new MockRequestDispatcher for the given URL.
- Parameters:
url - the URL to dispatch to.
forward
public void forward(javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response)
- Specified by:
forward in interface javax.servlet.RequestDispatcher
include
public void include(javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response)
- Specified by:
include in interface javax.servlet.RequestDispatcher
getMockHttpServletResponse
protected EnhancedMockHttpServletResponse getMockHttpServletResponse(javax.servlet.ServletResponse response)
- Obtain the underlying EnhancedMockHttpServletResponse,
unwrapping
HttpServletResponseWrapper decorators if necessary.