Package com.openmeet.webservice.services
Class ReportService
java.lang.Object
jakarta.servlet.GenericServlet
jakarta.servlet.http.HttpServlet
com.openmeet.webservice.services.ReportService
- All Implemented Interfaces:
jakarta.servlet.Servlet,jakarta.servlet.ServletConfig,Serializable
public class ReportService
extends jakarta.servlet.http.HttpServlet
Servlet that handles all invocations for the Report object.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoiddoPost(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) On POST request, the method gets the name of operation from "operation" paramater and then invoke the following proxy method.Methods inherited from class jakarta.servlet.http.HttpServlet
doDelete, doGet, doHead, doOptions, doPut, doTrace, getLastModified, service, serviceMethods inherited from class jakarta.servlet.GenericServlet
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, init, log, log
-
Constructor Details
-
ReportService
public ReportService()
-
-
Method Details
-
doPost
public void doPost(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) throws IOException On POST request, the method gets the name of operation from "operation" paramater and then invoke the following proxy method.- Overrides:
doPostin classjakarta.servlet.http.HttpServlet- Parameters:
request- anHttpServletRequestobject that contains the request the client has made of the servlet. In specific contain "operation" parameter that contains the name of operation requested and invokes the corresponding proxy method.response- anHttpServletResponseobject that contains the response the servlet sends to the client- Throws:
IOException
-