org.apache.catalina.servlets
クラス SsiInvokerServlet

java.lang.Object
  |
  +--javax.servlet.GenericServlet
        |
        +--javax.servlet.http.HttpServlet
              |
              +--org.apache.catalina.servlets.SsiInvokerServlet
すべての実装インタフェース:
java.io.Serializable, javax.servlet.Servlet, javax.servlet.ServletConfig

public final class SsiInvokerServlet
extends javax.servlet.http.HttpServlet

Servlet to process SSI requests within a webpage. Mapped to a path from within web.xml.

バージョン:
$Revision: 1.8.2.1 $, $Date: 2001/10/22 21:35:48 $
作成者:
Bip Thelin, Amy Roh
関連項目:
直列化された形式

コンストラクタの概要
SsiInvokerServlet()
           
 
メソッドの概要
 void doGet(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res)
          Process and forward the GET request to our requestHandler().
 void doPost(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res)
          Process and forward the POST request to our requestHandler().
 void init()
          Initialize this servlet.
 
クラス javax.servlet.http.HttpServlet から継承したメソッド
doDelete, doHead, doOptions, doPut, doTrace, getLastModified, service, service
 
クラス javax.servlet.GenericServlet から継承したメソッド
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, log, log
 
クラス java.lang.Object から継承したメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

SsiInvokerServlet

public SsiInvokerServlet()
メソッドの詳細

init

public void init()
          throws javax.servlet.ServletException
Initialize this servlet.
オーバーライド:
クラス javax.servlet.GenericServlet 内の init
例外:
javax.servlet.ServletException - if an error occurs

doGet

public void doGet(javax.servlet.http.HttpServletRequest req,
                  javax.servlet.http.HttpServletResponse res)
           throws java.io.IOException,
                  javax.servlet.ServletException
Process and forward the GET request to our requestHandler().
オーバーライド:
クラス javax.servlet.http.HttpServlet 内の doGet
パラメータ:
req - a value of type 'HttpServletRequest'
res - a value of type 'HttpServletResponse'
例外:
java.io.IOException - if an error occurs
javax.servlet.ServletException - if an error occurs

doPost

public void doPost(javax.servlet.http.HttpServletRequest req,
                   javax.servlet.http.HttpServletResponse res)
            throws java.io.IOException,
                   javax.servlet.ServletException
Process and forward the POST request to our requestHandler().
オーバーライド:
クラス javax.servlet.http.HttpServlet 内の doPost
パラメータ:
req - a value of type 'HttpServletRequest'
res - a value of type 'HttpServletResponse'
例外:
java.io.IOException - if an error occurs
javax.servlet.ServletException - if an error occurs


Copyright ? 2000-2001 Apache Software Foundation. All Rights Reserved.