public interface SamlMessageHandler
supports(HttpServletRequest)
method.Modifier and Type | Interface and Description |
---|---|
static class |
SamlMessageHandler.ProcessingStatus |
Modifier and Type | Method and Description |
---|---|
SamlMessageHandler.ProcessingStatus |
process(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Processes a SAML message an potentially produces a response.
|
boolean |
supports(javax.servlet.http.HttpServletRequest request)
returns true if the the
process(HttpServletRequest, HttpServletResponse) method
should be invoked. |
SamlMessageHandler.ProcessingStatus process(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws java.io.IOException, javax.servlet.ServletException
request
- - the incoming HTTP requestresponse
- - the outgoing HTTP responsejava.io.IOException
- - per servlet specification
Filter.doFilter(ServletRequest, ServletResponse, FilterChain)
javax.servlet.ServletException
- - per servlet specification
Filter.doFilter(ServletRequest, ServletResponse, FilterChain)
boolean supports(javax.servlet.http.HttpServletRequest request)
process(HttpServletRequest, HttpServletResponse)
method
should be invoked.request
- - the incoming requestprocess(HttpServletRequest, HttpServletResponse)
method to be invoked.