SilverStream
Application Server 3.5

com.sssw.srv.mail
Class AgoMIMEPartMessage

java.lang.Object
 |
 +--com.sssw.srv.mail.AgoMIMEPart
       |
       +--com.sssw.srv.mail.AgoMIMEPartMessage

public class AgoMIMEPartMessage
extends AgoMIMEPart

AgoMIMEPartMessage class.


Constructor Summary
AgoMIMEPartMessage(String subtype)
          A constructor for the AgoMIMEPartMessage class.
AgoMIMEPartMessage(String subtype, AgoRFC822HeaderFieldSet headerfieldset)
          A constructor for the AgoMIMEPartMessage class.
 
Methods inherited from class com.sssw.srv.mail.AgoMIMEPart
contentDispositionHeaderField, contentTransferEncodingHeaderField, contentTypeHeaderField, deleteHeaderField, getHeaderField, getHeaderFieldSet, getNameParameterOnContentType, setHeaderField, setHeaderField, setHeaderFieldSet, setNameParameterOnContentType, subtype, type, write, writeHeaderFields
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AgoMIMEPartMessage

public AgoMIMEPartMessage(String subtype)
A constructor for the AgoMIMEPartMessage class.
Parameters:
subtype - the subtype of the part (e.g. AgoMIME.SUBTYPE_RFC822). For a list of subtypes see supported types and subtypes.
Example:
     AgoMIMEPartMessage mPart = new AgoMIMEPartMessage("rfc822");
 

AgoMIMEPartMessage

public AgoMIMEPartMessage(String subtype,
                          AgoRFC822HeaderFieldSet headerfieldset)
A constructor for the AgoMIMEPartMessage class.
Parameters:
subtype - the subtype of the part (e.g. AgoMIME.SUBTYPE_RFC822). For a list of subtypes see supported types and subtypes.
headerfieldset - a set of headers for this part.
Example:
     AgoRFC822HeaderFieldSet headers;
     AgoMIMEPartMessage mPart = new AgoMIMEPartMessage("rfc822", headers);
 
See Also:
AgoRFC822HeaderFieldSet

SilverStream
Application Server 3.5