Package com.sun.identity.saml.servlet
Class AssertionManagerServlet
- java.lang.Object
-
- jakarta.servlet.GenericServlet
-
- jakarta.servlet.http.HttpServlet
-
- com.sun.xml.rpc.server.http.JAXRPCServlet
-
- com.sun.identity.saml.servlet.AssertionManagerServlet
-
- All Implemented Interfaces:
jakarta.servlet.Servlet
,jakarta.servlet.ServletConfig
,Serializable
public class AssertionManagerServlet extends com.sun.xml.rpc.server.http.JAXRPCServlet
The class provides remote interfaces for theAssertionManager
class using JAX-RPC. Since JAX-RPC does not provide a mechanism to obtainHttpServletRequest
andHttpServletResponse
, it is currently extending Sun's implementation ofJAXRPCServlet
. This class uses the same security mechanism used bySAMLSOAPReceiver
for validating the caller.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AssertionManagerServlet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
doPost(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response)
Overrides JAXRPCServlet's doPost method to perform the security check on the caller.-
Methods inherited from class jakarta.servlet.http.HttpServlet
doDelete, doHead, doOptions, doPut, doTrace, getLastModified, service, service
-
-
-
-
Method Detail
-
doPost
public void doPost(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) throws jakarta.servlet.ServletException
Overrides JAXRPCServlet's doPost method to perform the security check on the caller. The logic is implemented in SAMLSOAPReceiver.- Overrides:
doPost
in classcom.sun.xml.rpc.server.http.JAXRPCServlet
- Parameters:
request
- theHttpServletRequest
object.response
- theHttpServletResponse
object.- Throws:
jakarta.servlet.ServletException
- if there is an error.
-
-