Package com.verisign.epp.serverstub
Class ControllerServlet
- java.lang.Object
-
- jakarta.servlet.GenericServlet
-
- jakarta.servlet.http.HttpServlet
-
- com.verisign.epp.serverstub.ControllerServlet
-
- All Implemented Interfaces:
jakarta.servlet.Servlet,jakarta.servlet.ServletConfig,java.io.Serializable
public class ControllerServlet extends jakarta.servlet.http.HttpServletEPP Server Stub HTTP Controller Servlet. This Servlet, will route EPP commands to the appropriate handlers and return the result to the client.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ControllerServlet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddoGet(jakarta.servlet.http.HttpServletRequest aRequest, jakarta.servlet.http.HttpServletResponse aResponse)Process the HTTP GET requestvoiddoPost(jakarta.servlet.http.HttpServletRequest aRequest, jakarta.servlet.http.HttpServletResponse aResponse)Process the HTTP POST requestvoidinit(jakarta.servlet.ServletConfig config)Constructor.-
Methods inherited from class jakarta.servlet.http.HttpServlet
doDelete, doHead, doOptions, doPut, doTrace, getLastModified, service, service
-
-
-
-
Method Detail
-
init
public void init(jakarta.servlet.ServletConfig config) throws jakarta.servlet.ServletExceptionConstructor.- Specified by:
initin interfacejakarta.servlet.Servlet- Overrides:
initin classjakarta.servlet.http.HttpServlet- Parameters:
config- Servlet configuration- Throws:
jakarta.servlet.ServletException- Error initializing the servlet
-
doPost
public void doPost(jakarta.servlet.http.HttpServletRequest aRequest, jakarta.servlet.http.HttpServletResponse aResponse) throws jakarta.servlet.ServletException, java.io.IOExceptionProcess the HTTP POST request- Overrides:
doPostin classjakarta.servlet.http.HttpServlet- Parameters:
aRequest- HTTP requestaResponse- HTTP response- Throws:
jakarta.servlet.ServletException- Exception processing the HTTP requestjava.io.IOException- Exception reading and writing from/to the streams
-
doGet
public void doGet(jakarta.servlet.http.HttpServletRequest aRequest, jakarta.servlet.http.HttpServletResponse aResponse) throws jakarta.servlet.ServletException, java.io.IOExceptionProcess the HTTP GET request- Overrides:
doGetin classjakarta.servlet.http.HttpServlet- Parameters:
aRequest- HTTP requestaResponse- HTTP response- Throws:
jakarta.servlet.ServletException- Exception processing the HTTP requestjava.io.IOException- Exception reading and writing from/to the streams
-
-