blob: a42af603ff652c3d27b12af94d5fa19c7bb90e8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/* $Id$ */
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);
}
}
|