summaryrefslogtreecommitdiff
path: root/src/org/noreply/fancydress/directory/DeliverySMTPSection.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/noreply/fancydress/directory/DeliverySMTPSection.java')
-rw-r--r--src/org/noreply/fancydress/directory/DeliverySMTPSection.java27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/org/noreply/fancydress/directory/DeliverySMTPSection.java b/src/org/noreply/fancydress/directory/DeliverySMTPSection.java
new file mode 100644
index 0000000..e09c884
--- /dev/null
+++ b/src/org/noreply/fancydress/directory/DeliverySMTPSection.java
@@ -0,0 +1,27 @@
+package org.noreply.fancydress.directory;
+
+import org.noreply.fancydress.directory.parser.*;
+import org.noreply.fancydress.status.*;
+
+/**
+ * This class holds the information supplied in a Delivery/SMTP section of a
+ * server descriptor.
+ *
+ * @see ServerDescriptor
+ */
+public class DeliverySMTPSection extends DeliveryMBOXSMTPSection {
+
+ /**
+ * Construct a Delivery/SMTP section
+ *
+ * @param section the section to parse.
+ * @throws Mix3BadServerUnrecognizedVersionException if the Version in the section is not recognized.
+ * @throws Mix3BadServerFormatException if the Section is syntactially invalid.
+ */
+ public DeliverySMTPSection(DirectorySection section)
+ throws Mix3BadServerFormatException
+ {
+ // FIXME: assert that the section's name is Delivery/SMTP
+ super(section);
+ }
+}