![JAR search and dependency download from the Maven repository](/logo.png)
org.tbk.spring.lnurl.security.wallet.LnurlAuthWalletAuthenticationSuccessHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-lnurl-auth-security Show documentation
Show all versions of spring-lnurl-auth-security Show documentation
spring lnurl-auth security package
package org.tbk.spring.lnurl.security.wallet;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import lombok.extern.slf4j.Slf4j;
import org.springframework.security.core.Authentication;
import org.springframework.security.web.authentication.AuthenticationSuccessHandler;
@Slf4j
final class LnurlAuthWalletAuthenticationSuccessHandler implements AuthenticationSuccessHandler {
@Override
public void onAuthenticationSuccess(HttpServletRequest request, HttpServletResponse response, Authentication authentication) {
if (log.isDebugEnabled()) {
log.debug("Received successful lnurl-auth wallet request of user '{}'", authentication.getPrincipal());
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy