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

org.xbill.DNS.KXRecord Maven / Gradle / Ivy

The newest version!
// Copyright (c) 1999-2004 Brian Wellington ([email protected])

package org.xbill.DNS;

/**
 * Key Exchange - delegation of authority
 *
 * @author Brian Wellington
 */

public class KXRecord extends U16NameBase {

private static final long serialVersionUID = 7448568832769757809L;

KXRecord() {}

Record
getObject() {
	return new KXRecord();
}

/**
 * Creates a KX Record from the given data
 * @param preference The preference of this KX.  Records with lower priority
 * are preferred.
 * @param target The host that authority is delegated to
 */
public
KXRecord(Name name, int dclass, long ttl, int preference, Name target) {
	super(name, Type.KX, dclass, ttl, preference, "preference",
	      target, "target");
}

/** Returns the target of the KX record */
public Name
getTarget() {
	return getNameField();
}

/** Returns the preference of this KX record */
public int
getPreference() {
	return getU16Field();
}

public Name
getAdditionalName() {
	return getNameField();
}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy