All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.couchbase.client.core.deps.org.xbill.DNS.NSRecord Maven / Gradle / Ivy

There is a newer version: 3.7.2
Show newest version
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 1999-2004 Brian Wellington ([email protected])

package com.couchbase.client.core.deps.org.xbill.DNS;

/**
 * Name Server Record - contains the name server serving the named zone
 *
 * @author Brian Wellington
 * @see RFC 1035: Domain Names - Implementation and
 *     Specification
 */
public class NSRecord extends SingleCompressedNameBase {
  NSRecord() {}

  /**
   * Creates a new NS Record with the given data
   *
   * @param target The name server for the given domain
   */
  public NSRecord(Name name, int dclass, long ttl, Name target) {
    super(name, Type.NS, dclass, ttl, target, "target");
  }

  /** Gets the target of the NS Record */
  public Name getTarget() {
    return getSingleName();
  }

  @Override
  public Name getAdditionalName() {
    return getSingleName();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy