Interface Saml2LogoutResponseResolver
-
- All Known Implementing Classes:
OpenSaml3LogoutResponseResolver,OpenSaml4LogoutResponseResolver
public interface Saml2LogoutResponseResolverCreates a signed SAML 2.0 Logout Response based on information from theHttpServletRequestand currentAuthentication. The returned logout response is suitable for sending to the asserting party based on, for example, the location and binding specified inRelyingPartyRegistration.getAssertingPartyDetails().- Since:
- 5.6
- See Also:
RelyingPartyRegistration
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Saml2LogoutResponseresolve(javax.servlet.http.HttpServletRequest request, org.springframework.security.core.Authentication authentication)Prepare to create, sign, and serialize a SAML 2.0 Logout Response.
-
-
-
Method Detail
-
resolve
Saml2LogoutResponse resolve(javax.servlet.http.HttpServletRequest request, org.springframework.security.core.Authentication authentication)
Prepare to create, sign, and serialize a SAML 2.0 Logout Response.- Parameters:
request- the HTTP requestauthentication- the current user- Returns:
- a signed and serialized SAML 2.0 Logout Response
-
-