org.jwarp.service.web
Interface IJWarpServlet


public interface IJWarpServlet

The WebService interface is the central processing unit for all JWeb conformant wen applications.

Version:
1.0
Author:
A. Tresch, M.Schaefer

Method Summary
 WebStatus getWebStatus()
          Get an extended web service status.
 boolean isDebugging()
          This method returns if the application actually is running in debugging mode and so printing more detailed information on errors
 void performRequest(WebContext webContext)
          Servlet service method.
 void setDebugging(boolean debugging)
          With this method debugging mode can be switched on and off
 

Method Detail

isDebugging

public boolean isDebugging()
This method returns if the application actually is running in debugging mode and so printing more detailed information on errors

setDebugging

public void setDebugging(boolean debugging)
With this method debugging mode can be switched on and off

performRequest

public void performRequest(WebContext webContext)
Servlet service method. This is the main entry-point for JavaWeb. it does the following steps:
  1. if there is a new session, it will call the sssion-init object.
  2. the HttpRequest is wrapped into a JavawebRequest which provides more flexibility
  3. it calls the dispatch-method of the supplied ActionController

getWebStatus

public WebStatus getWebStatus()
Get an extended web service status.
Returns:
a web service status object

©   O R C A   S y s t e m s