Package com.discoverydns.dnsapiclient.command.nameServerInterfaceSet

Examples of com.discoverydns.dnsapiclient.command.nameServerInterfaceSet.NameServerInterface


      throw new DNSAPIClientJsonMappingException(
          DNSAPIClientJsonMappingExceptionCode.unexpectedMappingError,
          e, getTextualBeanType(), e.getMessage());
    }

    NameServerInterface nameServerInterface = new NameServerInterface();
    nameServerInterface.setOrder(findFieldNode(objectNode, "order")
        .intValue());
    nameServerInterface.setName(findFieldNode(objectNode, "name")
        .textValue());
    nameServerInterface.setIpv4Address((Inet4Address) getNodeAddressValue(
        objectNode, "ipv4Address"));
    nameServerInterface.setIpv6Address((Inet6Address) getNodeAddressValue(
        objectNode, "ipv6Address"));

    return nameServerInterface;
  }
View Full Code Here

TOP

Related Classes of com.discoverydns.dnsapiclient.command.nameServerInterfaceSet.NameServerInterface

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.