/*
* This software and supporting documentation were developed by
*
* Siemens Corporate Technology
* Competence Center Knowledge Management and Business Transformation
* D-81730 Munich, Germany
*
* Authors (representing a really great team ;-) )
* Stefan B. Augustin, Thorbj�rn Hansen, Manfred Langen
*
* This software is Open Source under GNU General Public License (GPL).
* Read the text of this license in LICENSE.TXT
* or look at www.opensource.org/licenses/
*
* Once more we emphasize, that:
* THIS SOFTWARE IS MADE AVAILABLE, AS IS, WITHOUT ANY WARRANTY
* REGARDING THE SOFTWARE, ITS PERFORMANCE OR
* FITNESS FOR ANY PARTICULAR USE, FREEDOM FROM ANY COMPUTER DISEASES OR
* ITS CONFORMITY TO ANY SPECIFICATION. THE ENTIRE RISK AS TO QUALITY AND
* PERFORMANCE OF THE SOFTWARE IS WITH THE USER.
*
*/
// Mail_Servlet
package appl.Portal.Mail.Servlet;
// Imports
// This application/module packages
import appl.Portal.Mail.Servlet.Mail_Props;
import appl.Portal.Mail.GUI.*;
// Other application/module packages
// KFM packages
import KFM.Exceptions.*;
import KFM.ServletFramework.*;
import KFM.HTML.*;
// Java packages
import java.io.*;
import java.net.*;
// Library classes (JHDK, JSDK, RegExp, ...)
import javax.servlet.*;
import javax.servlet.http.*;
/** <H2> Mail Documentation </H2>
*
* Mail is a servlet without user state.<P>
*
*
* <P>Cut+paste-source was `SM_Servlet�.</P>
*
* @version 0.1 (2002-04-10)
*/
public class Mail_Servlet extends KFM_PropertyServlet2
{
// ************************************************************
// Variables
// ************************************************************
/** The servlet properties.
*
* Shadows `super.mProps�, which is OK, as both refer to the same object.
*/
protected Mail_Props mProps = null;
public static boolean cleanAllTasks = false;
public static int mCounter = 0;
// ************************************************************
// Methods
// ************************************************************
/** Called by the web server when the servlet is just loaded, and
* after a destroy.
*
* @param config The configuration information
*/
public void init (ServletConfig aConfig)
throws ServletException
{
super.init(aConfig, mProps = new Mail_Props() /*sic*/);
}
/**
*
* Exception handling will be done by the calling father class (currently
* KFM_PropertyServlet2).
*
*/
public void doInit(ServletConfig aConfig)
throws ServletException, NoSuchServletPropertyException,
ProgrammerException, KFMException
{
}
/** Handle all HTTP request (escpecially `doGet� and `doPost�).
*
* @param aReq The POST or GET request information.
* @param aRes The HTTP response object.
*
* @exception ServletException
* @exception IOException
*/
public void processRequest2 (
HttpServletRequest aReq,
HttpServletResponse aRes)
throws ServletException, IOException, KFMException
{
// Create a new ApplicationPage for each request. Really.
Mail_ApplicationPage tP = new Mail_ApplicationPage(mProps, aReq);
tP.setServletName(this);
tP.write(/*user state*/ null, aReq, aRes);
}
}