From 566d17f731637df6828bdf32502a0fb123882dbe Mon Sep 17 00:00:00 2001 From: Peter Palfrader Date: Thu, 9 Oct 2003 11:41:45 +0000 Subject: Initial import --- .../fancydress/directory/DeliveryMBOXSection.java | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/org/noreply/fancydress/directory/DeliveryMBOXSection.java (limited to 'src/org/noreply/fancydress/directory/DeliveryMBOXSection.java') diff --git a/src/org/noreply/fancydress/directory/DeliveryMBOXSection.java b/src/org/noreply/fancydress/directory/DeliveryMBOXSection.java new file mode 100644 index 0000000..9a913e8 --- /dev/null +++ b/src/org/noreply/fancydress/directory/DeliveryMBOXSection.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/MBOX section of a + * server descriptor. + * + * @see ServerDescriptor + */ +public class DeliveryMBOXSection extends DeliveryMBOXSMTPSection { + + /** + * Construct a Delivery/MBOX 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 DeliveryMBOXSection(DirectorySection section) + throws Mix3BadServerFormatException + { + // FIXME: assert that the section's name is Delivery/MBOX + super(section); + } +} -- cgit v1.2.3