Class IpExtractor

  • All Implemented Interfaces:
    CredentialsExtractor<TokenCredentials>

    public class IpExtractor
    extends Object
    implements CredentialsExtractor<TokenCredentials>
    To extract a remote IP address. Search for headers as defined in an array. The first match will be returned as specified for enhanced for iteration over arrays. By default, if no proxy ip is setted (setProxyIp(String)), only request from proxy IP will be accepted.
    Since:
    1.8.0
    Author:
    Jerome Leleu, Guilherme I F L Weizenmann
    • Constructor Detail

      • IpExtractor

        public IpExtractor()
      • IpExtractor

        public IpExtractor​(String... alternateIpHeaders)
    • Method Detail

      • getProxyIp

        public String getProxyIp()
        Returns:
        The verified proxy IP
        Since:
        2.1.0
      • setProxyIp

        public void setProxyIp​(String proxyIp)
        Parameters:
        proxyIp - Set the IP to verify the proxy request source. Setting null or "" (empty string) disabled the proxy IP check.
        Since:
        2.1.0
      • setAlternateIpHeaders

        public void setAlternateIpHeaders​(String... alternateIpHeaders)
        Parameters:
        alternateIpHeaders - Sets alternate headers to search for IP. The first match will be returned as specified for enhanced for iteration over arrays.
        Since:
        2.1.0