Interface Saml2LogoutResponseResolver
- All Known Implementing Classes:
OpenSaml4LogoutResponseResolver
public interface Saml2LogoutResponseResolver
Creates a signed SAML 2.0 Logout Response based on information from the
HttpServletRequest and current Authentication.
The returned logout response is suitable for sending to the asserting party based on,
for example, the location and binding specified in
RelyingPartyRegistration.getAssertingPartyDetails().- Since:
- 5.6
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionresolve(jakarta.servlet.http.HttpServletRequest request, Authentication authentication) Prepare to create, sign, and serialize a SAML 2.0 Logout Response.
-
Method Details
-
resolve
Saml2LogoutResponse resolve(jakarta.servlet.http.HttpServletRequest request, 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
-