/* * Copyright (c) 2011-2013 The original author or authors * ------------------------------------------------------ * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Apache License v2.0 which accompanies this distribution. * * The Eclipse Public License is available at * http://www.eclipse.org/legal/epl-v10.html * * The Apache License v2.0 is available at * http://www.opensource.org/licenses/apache2.0.php * * You may elect to redistribute this code under either of these licenses. */ package examples; import io.vertx.core.Vertx; import io.vertx.core.dns.DnsClient; import io.vertx.core.dns.MxRecord; import io.vertx.core.dns.SrvRecord; import java.util.List; /** * @author <a href="mailto:julien@julienviet.com">Julien Viet</a> */ public class DNSExamples { public void example1(Vertx vertx) { DnsClient client = vertx.createDnsClient(53, "10.0.0.1"); } public void example2(Vertx vertx) { DnsClient client = vertx.createDnsClient(53, "10.0.0.1"); client.lookup("vertx.io", ar -> { if (ar.succeeded()) { System.out.println(ar.result()); } else { System.out.println("Failed to resolve entry" + ar.cause()); } }); } public void example3(Vertx vertx) { DnsClient client = vertx.createDnsClient(53, "10.0.0.1"); client.lookup4("vertx.io", ar -> { if (ar.succeeded()) { System.out.println(ar.result()); } else { System.out.println("Failed to resolve entry" + ar.cause()); } }); } public void example4(Vertx vertx) { DnsClient client = vertx.createDnsClient(53, "10.0.0.1"); client.lookup6("vertx.io", ar -> { if (ar.succeeded()) { System.out.println(ar.result()); } else { System.out.println("Failed to resolve entry" + ar.cause()); } }); } public void example5(Vertx vertx) { DnsClient client = vertx.createDnsClient(53, "10.0.0.1"); client.resolveA("vertx.io", ar -> { if (ar.succeeded()) { List<String> records = ar.result(); for (String record : records) { System.out.println(record); } } else { System.out.println("Failed to resolve entry" + ar.cause()); } }); } public void example6(Vertx vertx) { DnsClient client = vertx.createDnsClient(53, "10.0.0.1"); client.resolveAAAA("vertx.io", ar -> { if (ar.succeeded()) { List<String> records = ar.result(); for (String record : records) { System.out.println(record); } } else { System.out.println("Failed to resolve entry" + ar.cause()); } }); } public void example7(Vertx vertx) { DnsClient client = vertx.createDnsClient(53, "10.0.0.1"); client.resolveCNAME("vertx.io", ar -> { if (ar.succeeded()) { List<String> records = ar.result(); for (String record : records) { System.out.println(record); } } else { System.out.println("Failed to resolve entry" + ar.cause()); } }); } public void example8(Vertx vertx) { DnsClient client = vertx.createDnsClient(53, "10.0.0.1"); client.resolveMX("vertx.io", ar -> { if (ar.succeeded()) { List<MxRecord> records = ar.result(); for (MxRecord record: records) { System.out.println(record); } } else { System.out.println("Failed to resolve entry" + ar.cause()); } }); } public void example9(MxRecord record) { record.priority(); record.name(); } public void example10(Vertx vertx) { DnsClient client = vertx.createDnsClient(53, "10.0.0.1"); client.resolveTXT("vertx.io", ar -> { if (ar.succeeded()) { List<String> records = ar.result(); for (String record: records) { System.out.println(record); } } else { System.out.println("Failed to resolve entry" + ar.cause()); } }); } public void example11(Vertx vertx) { DnsClient client = vertx.createDnsClient(53, "10.0.0.1"); client.resolveNS("vertx.io", ar -> { if (ar.succeeded()) { List<String> records = ar.result(); for (String record: records) { System.out.println(record); } } else { System.out.println("Failed to resolve entry" + ar.cause()); } }); } public void example12(Vertx vertx) { DnsClient client = vertx.createDnsClient(53, "10.0.0.1"); client.resolveSRV("vertx.io", ar -> { if (ar.succeeded()) { List<SrvRecord> records = ar.result(); for (SrvRecord record: records) { System.out.println(record); } } else { System.out.println("Failed to resolve entry" + ar.cause()); } }); } private static SrvRecord getSrvRecord() { return null; } public void example13(SrvRecord record) { record.priority(); record.name(); record.weight(); record.port(); record.protocol(); record.service(); record.target(); } public void example14(Vertx vertx) { DnsClient client = vertx.createDnsClient(53, "10.0.0.1"); client.resolvePTR("1.0.0.10.in-addr.arpa", ar -> { if (ar.succeeded()) { String record = ar.result(); System.out.println(record); } else { System.out.println("Failed to resolve entry" + ar.cause()); } }); } public void example15(Vertx vertx) { DnsClient client = vertx.createDnsClient(53, "10.0.0.1"); client.reverseLookup("10.0.0.1", ar -> { if (ar.succeeded()) { String record = ar.result(); System.out.println(record); } else { System.out.println("Failed to resolve entry" + ar.cause()); } }); } }