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

io.sentry.event.helper.RemoteAddressResolver Maven / Gradle / Ivy

There is a newer version: 8.0.0-rc.3
Show newest version
package io.sentry.event.helper;

import javax.servlet.http.HttpServletRequest;

/**
 * Interface that allows users to define how the REMOTE_ADDR
 * is set on each {@link io.sentry.event.Event}.
 */
public interface RemoteAddressResolver {

    /**
     * Returns the REMOTE_ADDR for the provided request.
     *
     * @param request HttpServletRequest
     * @return String representing the desired REMOTE_ADDR.
     */
    String getRemoteAddress(HttpServletRequest request);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy