blob: a7ff4fc9b76d2dbc3b38f1b549283ac40dacadc1 [file] [log] [blame]
// Copyright (c) 1999-2004 Brian Wellington (bwelling@xbill.org)
package org.xbill.DNS;
/**
* Mailbox Rename Record - specifies a rename of a mailbox.
*
* @author Brian Wellington
*/
public class MRRecord extends SingleNameBase {
private static final long serialVersionUID = -5617939094209927533L;
MRRecord() {}
Record
getObject() {
return new MRRecord();
}
/**
* Creates a new MR Record with the given data
* @param newName The new name of the mailbox specified by the domain.
* domain.
*/
public
MRRecord(Name name, int dclass, long ttl, Name newName) {
super(name, Type.MR, dclass, ttl, newName, "new name");
}
/** Gets the new name of the mailbox specified by the domain */
public Name
getNewName() {
return getSingleName();
}
}