org.alltimeflashdreamer.filelister
Class FileListerControllerServlet

java.lang.Object
  extended byjavax.servlet.GenericServlet
      extended byjavax.servlet.http.HttpServlet
          extended byorg.alltimeflashdreamer.filelister.AbstractFileListerServlet
              extended byorg.alltimeflashdreamer.filelister.FileListerControllerServlet
All Implemented Interfaces:
Serializable, Servlet, ServletConfig

public class FileListerControllerServlet
extends AbstractFileListerServlet

Title: FileListerControllerServlet

Description: The conroller servlet acts as the central redirection machinery. It knows where the client comes from, does config stuff, if necessary, and redirects the client to where he'd like to go.

Organization: All Time Flash Dreamer

Version:
0.5.1
Author:
Copyright (c) 2002-2004 by Florian Steinsiepe
See Also:
Serialized Form

Field Summary
 
Fields inherited from class org.alltimeflashdreamer.filelister.AbstractFileListerServlet
CONFIGCLASSNAME
 
Constructor Summary
FileListerControllerServlet()
           
 
Method Summary
 void doPost(HttpServletRequest request, HttpServletResponse response)
          This method is called from the initial site only .
 
Methods inherited from class org.alltimeflashdreamer.filelister.AbstractFileListerServlet
doGet, showErrorSite
 
Methods inherited from class javax.servlet.http.HttpServlet
doDelete, doHead, doOptions, doPut, doTrace, getLastModified, service, service
 
Methods inherited from class javax.servlet.GenericServlet
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, init, log, log
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FileListerControllerServlet

public FileListerControllerServlet()
Method Detail

doPost

public void doPost(HttpServletRequest request,
                   HttpServletResponse response)
            throws ServletException,
                   IOException
This method is called from the initial site only . It reeads the request, does some config stuff, if necessary, and redirects the client to the initial site again..

Specified by:
doPost in class AbstractFileListerServlet
Parameters:
request - the request object to read URL stuff from
response - the response object to send stuff to
Throws:
ServletException - as defined in the superclass
IOException - as defined in the superclass