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

com.perimeterx.api.ip.IPProvider Maven / Gradle / Ivy

package com.perimeterx.api.ip;

import javax.servlet.http.HttpServletRequest;

/**
 * Extract the IP address from request
 * 

* Created by shikloshi on 05/07/2016. */ @FunctionalInterface public interface IPProvider { /** * Extract IP from Http request * * @param request - from which we want to extract IP * @return - IP string */ String getRequestIP(HttpServletRequest request); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy