aboutsummaryrefslogtreecommitdiff
path: root/src/org/xbill/DNS/MFRecord.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/xbill/DNS/MFRecord.java')
-rw-r--r--src/org/xbill/DNS/MFRecord.java43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/org/xbill/DNS/MFRecord.java b/src/org/xbill/DNS/MFRecord.java
new file mode 100644
index 0000000..ff293d7
--- /dev/null
+++ b/src/org/xbill/DNS/MFRecord.java
@@ -0,0 +1,43 @@
+// Copyright (c) 1999-2004 Brian Wellington (bwelling@xbill.org)
+
+package org.xbill.DNS;
+
+/**
+ * Mail Forwarder Record - specifies a mail agent which forwards mail
+ * for a domain (obsolete)
+ *
+ * @author Brian Wellington
+ */
+
+public class MFRecord extends SingleNameBase {
+
+private static final long serialVersionUID = -6670449036843028169L;
+
+MFRecord() {}
+
+Record
+getObject() {
+ return new MFRecord();
+}
+
+/**
+ * Creates a new MF Record with the given data
+ * @param mailAgent The mail agent that forwards mail for the domain.
+ */
+public
+MFRecord(Name name, int dclass, long ttl, Name mailAgent) {
+ super(name, Type.MF, dclass, ttl, mailAgent, "mail agent");
+}
+
+/** Gets the mail agent for the domain */
+public Name
+getMailAgent() {
+ return getSingleName();
+}
+
+public Name
+getAdditionalName() {
+ return getSingleName();
+}
+
+}