io.sentry.spring.jakarta.SentryUserProvider Maven / Gradle / Ivy
package io.sentry.spring.jakarta;
import io.sentry.protocol.User;
import org.jetbrains.annotations.Nullable;
/**
* Out of the box Spring integration configures single {@link SentryUserProvider} - {@link
* HttpServletRequestSentryUserProvider}.
*/
@FunctionalInterface
public interface SentryUserProvider {
@Nullable
User provideUser();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy