com.droplets.apix.servlet
Class DropletsRequestDispatcher
java.lang.Object
|
+--com.droplets.apix.servlet.DropletsRequestDispatcher
- All Implemented Interfaces:
- javax.servlet.RequestDispatcher
- public class DropletsRequestDispatcher
- extends java.lang.Object
- implements javax.servlet.RequestDispatcher
Implements RequestDispatcher for use in a Droplet calling a Servlet.
Many of the methods are marked as "Not implemented". This
is because there is no Droplets alternative and probably depends on the specifics
of the Servlet being used. It is expected that you subclass DropletsRequestDispatcher and provide
an implementation that is appropriate for the Servlet you are trying to call. Most of the methods
that are marked as "Not implemented" have a default implementation that may be appropriate, but are
marked that way nonetheless to alert the developer to check to see if they need something else.
Copyright: Copyright (c) 2003
Company: Droplets
Constructor Summary |
DropletsRequestDispatcher()
Normally called by DropletsHttpServletResponse to handle calls to getRequestDispatcher() |
Method Summary |
void |
forward(javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response)
Not implemented. |
void |
include(javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response)
Not implemented. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
DropletsRequestDispatcher
public DropletsRequestDispatcher()
- Normally called by DropletsHttpServletResponse to handle calls to getRequestDispatcher()
forward
public void forward(javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response)
throws javax.servlet.ServletException,
java.io.IOException
- Not implemented. This call is ignored.
- Specified by:
forward
in interface javax.servlet.RequestDispatcher
include
public void include(javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response)
throws javax.servlet.ServletException,
java.io.IOException
- Not implemented. This call is ignored.
- Specified by:
include
in interface javax.servlet.RequestDispatcher
Copyright © Droplets, 2001. All Rights Reserved.