Package org.xbill.DNS

Examples of org.xbill.DNS.TLSARecord$MatchingType


  @Override
  protected TLSARecord createRecord(final Name name, final int dclass,
      final long ttl, final ObjectNode recordNode) {
    try {
      return new TLSARecord(name, dclass, ttl, getNodeIntegerValue(
          recordNode, "certificateUsage"), getNodeIntegerValue(
          recordNode, "selector"), getNodeIntegerValue(recordNode,
          "matchingType"), getNodeStringValue(recordNode,
          "certificateAssociationData"));
    } catch (final IOException e) {
View Full Code Here

TOP

Related Classes of org.xbill.DNS.TLSARecord$MatchingType

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.