blob: a4b1d6457fc7d7c7f28dbdea09d200f19d0782fb (
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/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);
}
}
|