Package net.windwards.dnsfrontend.backend

Examples of net.windwards.dnsfrontend.backend.SimpleBackend


        this.backends.put(Type.A, jgroups);
        this.backends.put(Type.AAAA, jgroups);
        MXRecord mx = new MXRecord(
                new Name("example.com."), DClass.IN, 30,
                1, new Name(configuration.getMX()));
        this.backends.put(Type.MX, new SimpleBackend("MX", mx));

        for (Backend backend : this.backends.values()) {
            backend.setCache(cache);
            backend.setConfiguration(configuration);
            backend.start();
View Full Code Here

TOP

Related Classes of net.windwards.dnsfrontend.backend.SimpleBackend

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.