java.lang.Object |
↳ |
javax.servlet.GenericServlet |
|
↳ |
javax.servlet.http.HttpServlet |
|
|
↳ |
com.microstrategy.web.servlets.TaskProcessorServlet |
Known Direct Subclasses
TaskAdminServlet |
This is the servlet that provides tool interface and executions of administrative tasks. |
TaskViewerServlet |
This is the servlet that generates tool interface for tasks. |
|
Class Overview
This is the main servlet for the Task Processor component.
Summary
Public Methods |
void
|
destroy()
Destroy any data associated with the servlet.
|
void
|
init(ServletConfig config)
Initialize this servlet.
|
Protected Methods |
void
|
doGet(HttpServletRequest request, HttpServletResponse response)
Handle an incoming HTTP GET request.
|
void
|
doPost(HttpServletRequest request, HttpServletResponse response)
Handles an HTTP POST request.
|
[Expand]
Inherited Methods |
From class
javax.servlet.http.HttpServlet
void
|
doDelete(HttpServletRequest arg0, HttpServletResponse arg1)
|
void
|
doGet(HttpServletRequest arg0, HttpServletResponse arg1)
|
void
|
doHead(HttpServletRequest arg0, HttpServletResponse arg1)
|
void
|
doOptions(HttpServletRequest arg0, HttpServletResponse arg1)
|
void
|
doPost(HttpServletRequest arg0, HttpServletResponse arg1)
|
void
|
doPut(HttpServletRequest arg0, HttpServletResponse arg1)
|
void
|
doTrace(HttpServletRequest arg0, HttpServletResponse arg1)
|
long
|
getLastModified(HttpServletRequest arg0)
|
void
|
service(HttpServletRequest arg0, HttpServletResponse arg1)
|
void
|
service(ServletRequest arg0, ServletResponse arg1)
|
|
From class
javax.servlet.GenericServlet
void
|
destroy()
|
String
|
getInitParameter(String arg0)
|
Enumeration
|
getInitParameterNames()
|
ServletConfig
|
getServletConfig()
|
ServletContext
|
getServletContext()
|
String
|
getServletInfo()
|
String
|
getServletName()
|
void
|
init(ServletConfig arg0)
|
void
|
init()
|
void
|
log(String arg0)
|
void
|
log(String arg0, Throwable arg1)
|
abstract
void
|
service(ServletRequest arg0, ServletResponse arg1)
|
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
From interface
javax.servlet.Servlet
abstract
void
|
destroy()
|
abstract
ServletConfig
|
getServletConfig()
|
abstract
String
|
getServletInfo()
|
abstract
void
|
init(ServletConfig arg0)
|
abstract
void
|
service(ServletRequest arg0, ServletResponse arg1)
|
|
From interface
javax.servlet.ServletConfig
abstract
String
|
getInitParameter(String arg0)
|
abstract
Enumeration
|
getInitParameterNames()
|
abstract
ServletContext
|
getServletContext()
|
abstract
String
|
getServletName()
|
|
Constants
public
static
final
String
INIT_PARAM_TASK_CONTROLLER_CLASS
This is the name of the init parameter that refers to the AppController
class to instantiate.
Constant Value:
"controllerClass"
Public Constructors
public
TaskProcessorServlet
()
Public Methods
public
void
destroy
()
Destroy any data associated with the servlet.
public
void
init
(ServletConfig config)
Parameters
config |
The ServletConfig object associated with this
servlet. |
Throws
ServletException
| If something fails in the initialization of the
AppController.
|
Protected Methods
protected
void
doGet
(HttpServletRequest request, HttpServletResponse response)
Handle an incoming HTTP GET request.
Parameters
request |
The HttpServletRequest object. |
response |
The HttpServletResponse object. |
Throws
ServletException
| If something fails in the handling of the
request. |
IOException
| If we lose a connection to the client.
|
protected
void
doPost
(HttpServletRequest request, HttpServletResponse response)
Handles an HTTP POST request.
Parameters
request |
The HttpServletRequest object. |
response |
The HttpServletResponse object. |
Throws
ServletException
| If something fails in the handling of the
request. |
IOException
| If we lose a connection to the client.
|