org.xbill.DNS.KXRecord Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dnsjava-osgi Show documentation
Show all versions of dnsjava-osgi Show documentation
Repackaging dnsjava 2.0.6 for OSGI and Maven environments.
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 {
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();
}
}