Package org.apache.james.dnsservice.library.inetnetwork.model

Examples of org.apache.james.dnsservice.library.inetnetwork.model.Inet6Network


        if (netspec.indexOf('/') == -1) {
            netspec += "/32768";
        }

        return new Inet6Network(dnsService.getByName(netspec.substring(0, netspec.indexOf('/'))), new Integer(netspec.substring(netspec.indexOf('/') + 1)));
    }
View Full Code Here

TOP

Related Classes of org.apache.james.dnsservice.library.inetnetwork.model.Inet6Network

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.