gpt4 book ai didi

org.xbill.DNS.Zone.maybeAddRecord()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-14 05:52:49 25 4
gpt4 key购买 nike

本文整理了Java中org.xbill.DNS.Zone.maybeAddRecord()方法的一些代码示例,展示了Zone.maybeAddRecord()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Zone.maybeAddRecord()方法的具体详情如下:
包路径:org.xbill.DNS.Zone
类名称:Zone
方法名:maybeAddRecord

Zone.maybeAddRecord介绍

暂无

代码示例

代码示例来源:origin: org.littleshoot/dnsjava

/**
 * Creates a Zone from an array of records.
 * @param zone The name of the zone.
 * @param records The records to add to the zone.
 * @see Master
 */
public
Zone(Name zone, Record [] records) throws IOException {
  data = new TreeMap();

  if (zone == null)
    throw new IllegalArgumentException("no zone name specified");
  origin = zone;
  for (int i = 0; i < records.length; i++)
    maybeAddRecord(records[i]);
  validate();
}

代码示例来源:origin: tiandawu/IotXmpp

/**
 * Creates a Zone from an array of records.
 * @param zone The name of the zone.
 * @param records The records to add to the zone.
 * @see Master
 */
public
Zone(Name zone, Record [] records) throws IOException {
  data = new TreeMap();

  if (zone == null)
    throw new IllegalArgumentException("no zone name specified");
  origin = zone;
  for (int i = 0; i < records.length; i++)
    maybeAddRecord(records[i]);
  validate();
}

代码示例来源:origin: dnsjava/dnsjava

/**
 * Creates a Zone from an array of records.
 * @param zone The name of the zone.
 * @param records The records to add to the zone.
 * @see Master
 */
public
Zone(Name zone, Record [] records) throws IOException {
  data = new TreeMap();

  if (zone == null)
    throw new IllegalArgumentException("no zone name specified");
  origin = zone;
  for (int i = 0; i < records.length; i++)
    maybeAddRecord(records[i]);
  validate();
}

代码示例来源:origin: net.sf.dnsjava-osgi/dnsjava-osgi

/**
 * Creates a Zone from an array of records.
 * @param zone The name of the zone.
 * @param records The records to add to the zone.
 * @see Master
 */
public
Zone(Name zone, Record [] records) throws IOException {
  data = new HashMap();
  type = PRIMARY;

  if (zone == null)
    throw new IllegalArgumentException("no zone name specified");
  origin = zone;
  for (int i = 0; i < records.length; i++)
    maybeAddRecord(records[i]);
  validate();
}

代码示例来源:origin: tiandawu/IotXmpp

private void
fromXFR(ZoneTransferIn xfrin) throws IOException, ZoneTransferException {
  data = new TreeMap();

  origin = xfrin.getName();
  List records = xfrin.run();
  for (Iterator it = records.iterator(); it.hasNext(); ) {
    Record record = (Record) it.next();
    maybeAddRecord(record);
  }
  if (!xfrin.isAXFR())
    throw new IllegalArgumentException("zones can only be " +
              "created from AXFRs");
  validate();
}

代码示例来源:origin: dnsjava/dnsjava

private void
fromXFR(ZoneTransferIn xfrin) throws IOException, ZoneTransferException {
  data = new TreeMap();

  origin = xfrin.getName();
  List records = xfrin.run();
  for (Iterator it = records.iterator(); it.hasNext(); ) {
    Record record = (Record) it.next();
    maybeAddRecord(record);
  }
  if (!xfrin.isAXFR())
    throw new IllegalArgumentException("zones can only be " +
              "created from AXFRs");
  validate();
}

代码示例来源:origin: org.littleshoot/dnsjava

private void
fromXFR(ZoneTransferIn xfrin) throws IOException, ZoneTransferException {
  data = new TreeMap();

  origin = xfrin.getName();
  List records = xfrin.run();
  for (Iterator it = records.iterator(); it.hasNext(); ) {
    Record record = (Record) it.next();
    maybeAddRecord(record);
  }
  if (!xfrin.isAXFR())
    throw new IllegalArgumentException("zones can only be " +
              "created from AXFRs");
  validate();
}

代码示例来源:origin: net.sf.dnsjava-osgi/dnsjava-osgi

private void
fromXFR(ZoneTransferIn xfrin) throws IOException, ZoneTransferException {
  data = new HashMap();
  type = SECONDARY;

  if (!xfrin.isAXFR())
    throw new IllegalArgumentException("zones can only be " +
              "created from AXFRs");
  origin = xfrin.getName();
  List records = xfrin.run();
  for (Iterator it = records.iterator(); it.hasNext(); ) {
    Record record = (Record) it.next();
    maybeAddRecord(record);
  }
  validate();
}

代码示例来源:origin: tiandawu/IotXmpp

/**
 * Creates a Zone from the records in the specified master file.
 * @param zone The name of the zone.
 * @param file The master file to read from.
 * @see Master
 */
public
Zone(Name zone, String file) throws IOException {
  data = new TreeMap();

  if (zone == null)
    throw new IllegalArgumentException("no zone name specified");
  Master m = new Master(file, zone);
  Record record;

  origin = zone;
  while ((record = m.nextRecord()) != null)
    maybeAddRecord(record);
  validate();
}

代码示例来源:origin: net.sf.dnsjava-osgi/dnsjava-osgi

/**
 * Creates a Zone from the records in the specified master file.
 * @param zone The name of the zone.
 * @param file The master file to read from.
 * @see Master
 */
public
Zone(Name zone, String file) throws IOException {
  data = new HashMap();
  type = PRIMARY;

  if (zone == null)
    throw new IllegalArgumentException("no zone name specified");
  Master m = new Master(file, zone);
  Record record;

  origin = zone;
  while ((record = m.nextRecord()) != null)
    maybeAddRecord(record);
  validate();
}

代码示例来源:origin: org.littleshoot/dnsjava

/**
 * Creates a Zone from the records in the specified master file.
 * @param zone The name of the zone.
 * @param file The master file to read from.
 * @see Master
 */
public
Zone(Name zone, String file) throws IOException {
  data = new TreeMap();

  if (zone == null)
    throw new IllegalArgumentException("no zone name specified");
  Master m = new Master(file, zone);
  Record record;

  origin = zone;
  while ((record = m.nextRecord()) != null)
    maybeAddRecord(record);
  validate();
}

代码示例来源:origin: dnsjava/dnsjava

/**
 * Creates a Zone from the records in the specified master file.
 * @param zone The name of the zone.
 * @param file The master file to read from.
 * @see Master
 */
public
Zone(Name zone, String file) throws IOException {
  data = new TreeMap();

  if (zone == null)
    throw new IllegalArgumentException("no zone name specified");
  Master m = new Master(file, zone);
  Record record;

  origin = zone;
  while ((record = m.nextRecord()) != null)
    maybeAddRecord(record);
  validate();
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com