com.bankframe.fe.statemachine.ext.connectors.servlet
Class EntryServlet

java.lang.Object
  |
  +--javax.servlet.GenericServlet
        |
        +--javax.servlet.http.HttpServlet
              |
              +--com.bankframe.fe.statemachine.ext.connectors.servlet.EntryServlet
All Implemented Interfaces:
java.io.Serializable, javax.servlet.Servlet, javax.servlet.ServletConfig

public class EntryServlet
extends javax.servlet.http.HttpServlet

See Also:
Serialized Form

Constructor Summary
EntryServlet()
           
 
Method Summary
 void delegateToRequestManager(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res)
          This method is called by doGet and doPost to handle a request.
 void doGet(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          This is the servlet doGet method.
 void doPost(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          This is the servlet doPost method.
 void init(javax.servlet.ServletConfig config)
          This method copies the init parameters named in the initParameters attribute from the ServletConfig into the properties attribute.
 
Methods inherited from class javax.servlet.http.HttpServlet
service
 
Methods inherited from class javax.servlet.GenericServlet
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, log, log
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

EntryServlet

public EntryServlet()
Method Detail

delegateToRequestManager

public void delegateToRequestManager(javax.servlet.http.HttpServletRequest req,
                                     javax.servlet.http.HttpServletResponse res)
                              throws javax.servlet.ServletException,
                                     java.io.IOException
This method is called by doGet and doPost to handle a request. This simply delegates handling of the request to the RequestManager.

Throws:
javax.servlet.ServletException
java.io.IOException

doGet

public void doGet(javax.servlet.http.HttpServletRequest request,
                  javax.servlet.http.HttpServletResponse response)
           throws javax.servlet.ServletException,
                  java.io.IOException
This is the servlet doGet method. This delegates the handling of the request to the method delegateToRequestManager, which further delegates to the RequestManager.

Overrides:
doGet in class javax.servlet.http.HttpServlet
Parameters:
request - HttpServletRequest
response - HttpServletResponse
Throws:
javax.servlet.ServletException
java.io.IOException

doPost

public void doPost(javax.servlet.http.HttpServletRequest request,
                   javax.servlet.http.HttpServletResponse response)
            throws javax.servlet.ServletException,
                   java.io.IOException
This is the servlet doPost method. This delegates the handling of the request to the method delegateToRequestManager, which further delegates to the RequestManager.

Overrides:
doPost in class javax.servlet.http.HttpServlet
Parameters:
request - HttpServletRequest
response - HttpServletResponse
Throws:
javax.servlet.ServletException
java.io.IOException

init

public void init(javax.servlet.ServletConfig config)
          throws javax.servlet.ServletException
This method copies the init parameters named in the initParameters attribute from the ServletConfig into the properties attribute. This properties attribute is passed into the RequestManager on all requests through this servlet.

Specified by:
init in interface javax.servlet.Servlet
Overrides:
init in class javax.servlet.GenericServlet
Parameters:
config - .
Throws:
javax.servlet.ServletException - .


Copyright © 2005 Siebel Systems, Inc. All rights reserved.