Examples of InetAddressWhitelist


Examples of com.asquera.elasticsearch.plugins.http.auth.InetAddressWhitelist

            NodeService nodeService) {
        super(settings, environment, transport, restController, nodeService);

        this.user = settings.get("http.basic.user", "admin");
        this.password = settings.get("http.basic.password", "admin_pw");
        this.whitelist = new InetAddressWhitelist(
                settings.getAsArray("http.basic.ipwhitelist",
                  new String[]{"localhost", "127.0.0.1"}));
        this.proxyChains = new ProxyChains(
            settings.getAsArray(
              "http.basic.trusted_proxy_chains", new String[]{""}));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.