Class HeaderWriterLogoutHandler
java.lang.Object
org.springframework.security.web.authentication.logout.HeaderWriterLogoutHandler
- All Implemented Interfaces:
LogoutHandler
- Since:
- 5.2
-
Constructor Summary
ConstructorDescriptionHeaderWriterLogoutHandler
(HeaderWriter headerWriter) Constructs a new instance using the passedHeaderWriter
implementation -
Method Summary
Modifier and TypeMethodDescriptionvoid
logout
(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, Authentication authentication) Causes a logout to be completed.
-
Constructor Details
-
HeaderWriterLogoutHandler
Constructs a new instance using the passedHeaderWriter
implementation- Parameters:
headerWriter
-- Throws:
IllegalArgumentException
- if headerWriter is null.
-
-
Method Details
-
logout
public void logout(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, Authentication authentication) Description copied from interface:LogoutHandler
Causes a logout to be completed. The method must complete successfully.- Specified by:
logout
in interfaceLogoutHandler
- Parameters:
request
- the HTTP requestresponse
- the HTTP responseauthentication
- the current principal details
-