Package org.apache.james.util.netmatcher

Examples of org.apache.james.util.netmatcher.NetMatcher


     *
     * @param networks Collection of networks
     * @param dnsServer The DNSServer
     */
    public void setBannedNetworks(Collection<String> networks, DNSService dnsServer) {
        bNetwork = new NetMatcher(networks, dnsServer) {
            protected void log(String s) {
                serviceLog.debug(s);
            }
        };
    }
View Full Code Here

TOP

Related Classes of org.apache.james.util.netmatcher.NetMatcher

Copyright © 2018 www.massapicom. 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.