Package mondrian.web.servlet
Class MdxQueryServlet
- java.lang.Object
-
- javax.servlet.GenericServlet
-
- javax.servlet.http.HttpServlet
-
- mondrian.web.servlet.MdxQueryServlet
-
- All Implemented Interfaces:
Serializable,Servlet,ServletConfig
public class MdxQueryServlet extends HttpServlet
MdxQueryServletis a servlet which receives MDX queries, executes them, and formats the results in an HTML table.- Since:
- 13 February, 2002
- Author:
- Sean McCullough
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MdxQueryServlet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddestroy()Destroys the servlet.protected voiddoGet(HttpServletRequest request, HttpServletResponse response)Handles the HTTPGETmethod.protected voiddoPost(HttpServletRequest request, HttpServletResponse response)Handles the HTTPPOSTmethod.StringgetServletInfo()Returns a short description of the servlet.voidinit(ServletConfig config)Initializes the servlet.protected voidprocessRequest(HttpServletRequest request, HttpServletResponse response)Processes requests for both HTTPGETandPOSTmethods.-
Methods inherited from class javax.servlet.http.HttpServlet
doDelete, doHead, doOptions, doPut, doTrace, getLastModified, service, service
-
Methods inherited from class javax.servlet.GenericServlet
getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletName, init, log, log
-
-
-
-
Method Detail
-
init
public void init(ServletConfig config) throws ServletException
Initializes the servlet.- Specified by:
initin interfaceServlet- Overrides:
initin classGenericServlet- Throws:
ServletException
-
destroy
public void destroy()
Destroys the servlet.- Specified by:
destroyin interfaceServlet- Overrides:
destroyin classGenericServlet
-
processRequest
protected void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
Processes requests for both HTTPGETandPOSTmethods.- Parameters:
request- servlet requestresponse- servlet response- Throws:
ServletExceptionIOException
-
doGet
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
Handles the HTTPGETmethod.- Overrides:
doGetin classHttpServlet- Parameters:
request- servlet requestresponse- servlet response- Throws:
ServletExceptionIOException
-
doPost
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
Handles the HTTPPOSTmethod.- Overrides:
doPostin classHttpServlet- Parameters:
request- servlet requestresponse- servlet response- Throws:
ServletExceptionIOException
-
getServletInfo
public String getServletInfo()
Returns a short description of the servlet.- Specified by:
getServletInfoin interfaceServlet- Overrides:
getServletInfoin classGenericServlet
-
-