Package io.jans.as.server.servlet
Class WebFinger
java.lang.Object
jakarta.servlet.GenericServlet
jakarta.servlet.http.HttpServlet
io.jans.as.server.servlet.WebFinger
- All Implemented Interfaces:
jakarta.servlet.Servlet
,jakarta.servlet.ServletConfig
,Serializable
@WebServlet(urlPatterns="/.well-known/webfinger")
public class WebFinger
extends jakarta.servlet.http.HttpServlet
- Author:
- Javier Rojas Blum Date: 01.28.2013
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected void
doGet
(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) Handles the HTTPGET
method.protected void
doPost
(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) Handles the HTTPPOST
method.Returns a short description of the servlet.protected void
processRequest
(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) Processes requests for both HTTPGET
andPOST
methods.Methods inherited from class jakarta.servlet.http.HttpServlet
doDelete, doHead, doOptions, doPut, doTrace, getLastModified, service, service
Methods inherited from class jakarta.servlet.GenericServlet
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletName, init, init, log, log
-
Constructor Details
-
WebFinger
public WebFinger()
-
-
Method Details
-
processRequest
protected void processRequest(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) throws IOException Processes requests for both HTTPGET
andPOST
methods.- Parameters:
request
- servlet requestresponse
- servlet response- Throws:
IOException
- if an I/O error occurs
-
doGet
protected void doGet(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) throws jakarta.servlet.ServletException, IOException Handles the HTTPGET
method.- Overrides:
doGet
in classjakarta.servlet.http.HttpServlet
- Parameters:
request
- servlet requestresponse
- servlet response- Throws:
jakarta.servlet.ServletException
- if a servlet-specific error occursIOException
- if an I/O error occurs
-
doPost
protected void doPost(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) throws jakarta.servlet.ServletException, IOException Handles the HTTPPOST
method.- Overrides:
doPost
in classjakarta.servlet.http.HttpServlet
- Parameters:
request
- servlet requestresponse
- servlet response- Throws:
jakarta.servlet.ServletException
- if a servlet-specific error occursIOException
- if an I/O error occurs
-
getServletInfo
Returns a short description of the servlet.- Specified by:
getServletInfo
in interfacejakarta.servlet.Servlet
- Overrides:
getServletInfo
in classjakarta.servlet.GenericServlet
- Returns:
- a String containing servlet description
-