org.jboss.seam.exception.example.basic.servlet.navigation
Class NavigationServlet
java.lang.Object
javax.servlet.GenericServlet
javax.servlet.http.HttpServlet
org.jboss.seam.exception.example.basic.servlet.navigation.NavigationServlet
- All Implemented Interfaces:
- Serializable, Servlet, ServletConfig
@WebServlet(name="NavigationServlet",
urlPatterns="/Navigation/*")
public class NavigationServlet- extends HttpServlet
Navigation rules based on Seam Servlet events.
- Author:
- Jason Porter
- See Also:
- Serialized Form
| 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 |
NavigationServlet
public NavigationServlet()
service
protected void service(HttpServletRequest req,
HttpServletResponse resp)
throws ServletException,
IOException
- Receives standard HTTP requests from the public
service method and dispatches them to the
doXXX methods defined in this class. This method is an HTTP-specific version of the Servlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse) method. There's no need to override this method.
- Overrides:
service in class HttpServlet
- Parameters:
req - the HttpServletRequest object that contains the request the client made of
the servletresp - the HttpServletResponse object that contains the response the servlet
returns to the client
- Throws:
IOException - if an input or output error occurs while the servlet is handling the HTTP
request
ServletException - if the HTTP request cannot be handled- See Also:
Servlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
Copyright © 2011 Seam Framework. All Rights Reserved.