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

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

// Copyright (c) 2004 Brian Wellington ([email protected])

package org.xbill.DNS;

import java.io.IOException;

/**
 * Implements common functionality for the many record types whose format
 * is a single name.
 *
 * @author Brian Wellington
 */

abstract class SingleNameBase extends Record {

private static final long serialVersionUID = -18595042501413L;

protected Name singleName;

protected
SingleNameBase() {}

protected
SingleNameBase(Name name, int type, int dclass, long ttl) {
	super(name, type, dclass, ttl);
}

protected
SingleNameBase(Name name, int type, int dclass, long ttl, Name singleName,
	    String description)
{
	super(name, type, dclass, ttl);
	this.singleName = checkName(description, singleName);
}

void
rrFromWire(DNSInput in) throws IOException {
	singleName = new Name(in);
}

void
rdataFromString(Tokenizer st, Name origin) throws IOException {
	singleName = st.getName(origin);
}

String
rrToString() {
	return singleName.toString();
}

protected Name
getSingleName() {
	return singleName;
}

void
rrToWire(DNSOutput out, Compression c, boolean canonical) {
	singleName.toWire(out, null, canonical);
}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy