Package com.atlassian.bitbucket.auth
Interface HttpLogoutHandler
public interface HttpLogoutHandler
Interface that 
http-auth-handler modules can optionally implement to receive callbacks on logout.- 
Method SummaryModifier and TypeMethodDescriptionvoidlogout(com.atlassian.bitbucket.user.ApplicationUser user, jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) Implementations should clean up external resources if they need to.
- 
Method Details- 
logoutvoid logout(@Nonnull com.atlassian.bitbucket.user.ApplicationUser user, @Nonnull jakarta.servlet.http.HttpServletRequest request, @Nonnull jakarta.servlet.http.HttpServletResponse response) Implementations should clean up external resources if they need to. They can optionally write to the response or redirect the user to override the standard system behaviour.- Parameters:
- user- the user to log out
- request- the HTTP request
- response- the HTTP response
 
 
-