Package org.xbill.DNS

Examples of org.xbill.DNS.LOCRecord


  @Override
  protected LOCRecord createRecord(final Name name, final int dclass,
      final long ttl, final ObjectNode recordNode) {
    try {
      return new LOCRecord(name, dclass, ttl, getNodeStringValue(
          recordNode, "latitude"), getNodeStringValue(recordNode,
          "longitude"), getNodeStringValue(recordNode, "altitude"),
          getNodeStringValue(recordNode, "size"), getNodeStringValue(
              recordNode, "hPrecision"), getNodeStringValue(
              recordNode, "vPrecision"));
View Full Code Here

TOP

Related Classes of org.xbill.DNS.LOCRecord

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.