Class ServiceTimeoutServlet
- java.lang.Object
-
- javax.servlet.GenericServlet
-
- javax.servlet.http.HttpServlet
-
- org.apache.syncope.fit.buildtools.ServiceTimeoutServlet
-
- All Implemented Interfaces:
Serializable,javax.servlet.Servlet,javax.servlet.ServletConfig
@WebServlet(urlPatterns="/services/") public class ServiceTimeoutServlet extends javax.servlet.http.HttpServletJust used to verify a connector request timeout.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ServiceTimeoutServlet()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddoGet(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)Handles the HTTPGETmethod.protected voiddoPost(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)Handles the HTTPPOSTmethod.StringgetServletInfo()Returns a short description of the servlet.protected static voidprocessRequest(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)Processes requests for both HTTPGETandPOSTmethods.-
Methods inherited from class javax.servlet.http.HttpServlet
doDelete, doHead, doOptions, doPut, doTrace, getLastModified, service, service
-
-
-
-
Method Detail
-
processRequest
protected static void processRequest(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws javax.servlet.ServletException, IOExceptionProcesses requests for both HTTPGETandPOSTmethods.- Parameters:
request- servlet requestresponse- servlet response- Throws:
javax.servlet.ServletException- if a servlet-specific error occursIOException- if an I/O error occurs
-
doGet
protected void doGet(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws javax.servlet.ServletException, IOExceptionHandles the HTTPGETmethod.- Overrides:
doGetin classjavax.servlet.http.HttpServlet- Parameters:
request- servlet requestresponse- servlet response- Throws:
javax.servlet.ServletException- if a servlet-specific error occursIOException- if an I/O error occurs
-
doPost
protected void doPost(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws javax.servlet.ServletException, IOExceptionHandles the HTTPPOSTmethod.- Overrides:
doPostin classjavax.servlet.http.HttpServlet- Parameters:
request- servlet requestresponse- servlet response- Throws:
javax.servlet.ServletException- if a servlet-specific error occursIOException- if an I/O error occurs
-
getServletInfo
public String getServletInfo()
Returns a short description of the servlet.- Specified by:
getServletInfoin interfacejavax.servlet.Servlet- Overrides:
getServletInfoin classjavax.servlet.GenericServlet- Returns:
- a String containing servlet description
-
-