All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.sentry.spring.SentryUserProvider Maven / Gradle / Ivy

package io.sentry.spring;

import io.sentry.protocol.User;
import org.jetbrains.annotations.Nullable;

/**
 * Provides user information that's set on {@link io.sentry.SentryEvent} using {@link
 * SentryUserProviderEventProcessor}.
 *
 * 

Out of the box Spring integration configures single {@link SentryUserProvider} - {@link * HttpServletRequestSentryUserProvider}. */ @FunctionalInterface public interface SentryUserProvider { @Nullable User provideUser(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy