- java.lang.Object
-
- jakarta.mail.Multipart
-
- jakarta.mail.internet.MimeMultipart
-
- org.eclipse.angus.mail.dsn.MultipartReport
-
public class MultipartReport extends MimeMultipart
A multipart/report message content, as defined in RFC 3462. A multipart/report content is a container for mail reports of any kind, and is most often used to return a delivery status report or a disposition notification report.A MultipartReport object is a special type of MimeMultipart object with a restricted set of body parts. A MultipartReport object contains:
- [Required] A human readable text message describing the reason the report was generated.
- [Required] A
Reportobject containing the details for why the report was generated. - [Optional] A returned copy of the entire message, or just its headers, which caused the generation of this report.
- Since:
- JavaMail 1.4
-
-
Field Summary
Fields Modifier and Type Field Description protected booleanconstructed-
Fields inherited from class jakarta.mail.internet.MimeMultipart
allowEmpty, complete, ds, ignoreExistingBoundaryParameter, ignoreMissingBoundaryParameter, ignoreMissingEndBoundary, parsed, preamble
-
Fields inherited from class jakarta.mail.Multipart
contentType, parent, parts, streamProvider
-
-
Constructor Summary
Constructors Constructor Description MultipartReport()Construct a multipart/report object with no content.MultipartReport(jakarta.activation.DataSource ds)Constructs a MultipartReport object and its bodyparts from the given DataSource.MultipartReport(java.lang.String text, Report report)Construct a multipart/report object with the specified plain text and report type (DeliveryStatus or DispositionNotification) to be returned to the user.MultipartReport(java.lang.String text, Report report, InternetHeaders hdr)Construct a multipart/report object with the specified plain text, report, and headers from the original message to be returned to the user.MultipartReport(java.lang.String text, Report report, MimeMessage msg)Construct a multipart/report object with the specified plain text, report, and original message to be returned to the user.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidaddBodyPart(BodyPart part)Adds a Part to the multipart.voidaddBodyPart(BodyPart part, int index)Adds a BodyPart at positionindex.DeliveryStatusgetDeliveryStatus()Deprecated.use getReport insteadReportgetReport()Get the report associated with this multipart/report.MimeMessagegetReturnedMessage()Get the original message that is being returned along with this multipart/report.java.lang.StringgetText()Get the plain text to be presented to the user, if there is any.MimeBodyPartgetTextBodyPart()Return the body part containing the message to be presented to the user, usually just a text/plain part.voidremoveBodyPart(int index)Remove the part at specified location (starting from 0).booleanremoveBodyPart(BodyPart part)Remove the specified part from the multipart message.voidsetDeliveryStatus(DeliveryStatus status)Deprecated.use setReport insteadvoidsetReport(Report report)Set the report associated with this multipart/report.voidsetReturnedMessage(MimeMessage msg)Set the original message to be returned as part of the multipart/report.voidsetSubType(java.lang.String subtype)Set the subtype.voidsetText(java.lang.String text)Set the message to be presented to the user as just a text/plain part containing the specified text.voidsetTextBodyPart(MimeBodyPart mbp)Set the body part containing the text to be presented to the user.-
Methods inherited from class jakarta.mail.internet.MimeMultipart
createInternetHeaders, createMimeBodyPart, createMimeBodyPart, getBodyPart, getBodyPart, getCount, getPreamble, initializeProperties, isComplete, parse, setPreamble, updateHeaders, writeTo
-
Methods inherited from class jakarta.mail.Multipart
getContentType, getParent, setMultipartDataSource, setParent
-
-
-
-
Constructor Detail
-
MultipartReport
public MultipartReport() throws MessagingExceptionConstruct a multipart/report object with no content.- Throws:
MessagingException- for failures
-
MultipartReport
public MultipartReport(java.lang.String text, Report report) throws MessagingExceptionConstruct a multipart/report object with the specified plain text and report type (DeliveryStatus or DispositionNotification) to be returned to the user.- Parameters:
text- the plain textreport- the Report object- Throws:
MessagingException- for failures
-
MultipartReport
public MultipartReport(java.lang.String text, Report report, MimeMessage msg) throws MessagingExceptionConstruct a multipart/report object with the specified plain text, report, and original message to be returned to the user.- Parameters:
text- the plain textreport- the Report objectmsg- the message this report is about- Throws:
MessagingException- for failures
-
MultipartReport
public MultipartReport(java.lang.String text, Report report, InternetHeaders hdr) throws MessagingExceptionConstruct a multipart/report object with the specified plain text, report, and headers from the original message to be returned to the user.- Parameters:
text- the plain textreport- the Report objecthdr- the headers of the message this report is about- Throws:
MessagingException- for failures
-
MultipartReport
public MultipartReport(jakarta.activation.DataSource ds) throws MessagingExceptionConstructs a MultipartReport object and its bodyparts from the given DataSource.- Parameters:
ds- DataSource, can be a MultipartDataSource- Throws:
MessagingException- for failures
-
-
Method Detail
-
getText
public java.lang.String getText() throws MessagingExceptionGet the plain text to be presented to the user, if there is any. Rarely, the message may contain only HTML text, or no text at all. If the text body part of this multipart/report object is of type text/plain, or if it is of type multipart/alternative and contains a text/plain part, the text from that part is returned. Otherwise, null is return and thegetTextBodyPartmethod may be used to extract the data.- Returns:
- the text
- Throws:
MessagingException- for failures
-
setText
public void setText(java.lang.String text) throws MessagingExceptionSet the message to be presented to the user as just a text/plain part containing the specified text.- Parameters:
text- the text- Throws:
MessagingException- for failures
-
getTextBodyPart
public MimeBodyPart getTextBodyPart() throws MessagingException
Return the body part containing the message to be presented to the user, usually just a text/plain part.- Returns:
- the body part containing the text
- Throws:
MessagingException- for failures
-
setTextBodyPart
public void setTextBodyPart(MimeBodyPart mbp) throws MessagingException
Set the body part containing the text to be presented to the user. Usually this a text/plain part, but it might also be a text/html part or a multipart/alternative part containing text/plain and text/html parts. Any type is allowed here but these types are most common.- Parameters:
mbp- the body part containing the text- Throws:
MessagingException- for failures
-
getReport
public Report getReport() throws MessagingException
Get the report associated with this multipart/report.- Returns:
- the Report object
- Throws:
MessagingException- for failures- Since:
- JavaMail 1.4.2
-
setReport
public void setReport(Report report) throws MessagingException
Set the report associated with this multipart/report.- Parameters:
report- the Report object- Throws:
MessagingException- for failures- Since:
- JavaMail 1.4.2
-
getDeliveryStatus
@Deprecated public DeliveryStatus getDeliveryStatus() throws MessagingException
Deprecated.use getReport insteadGet the delivery status associated with this multipart/report.- Returns:
- the delivery status
- Throws:
MessagingException- for failures
-
setDeliveryStatus
public void setDeliveryStatus(DeliveryStatus status) throws MessagingException
Deprecated.use setReport insteadSet the delivery status associated with this multipart/report.- Parameters:
status- the deliver status- Throws:
MessagingException- for failures
-
getReturnedMessage
public MimeMessage getReturnedMessage() throws MessagingException
Get the original message that is being returned along with this multipart/report. If no original message is included, null is returned. In some cases only the headers of the original message will be returned as an object of type MessageHeaders.- Returns:
- the returned message
- Throws:
MessagingException- for failures
-
setReturnedMessage
public void setReturnedMessage(MimeMessage msg) throws MessagingException
Set the original message to be returned as part of the multipart/report. If msg is null, any previously set returned message or headers is removed.- Parameters:
msg- the returned message- Throws:
MessagingException- for failures
-
setSubType
public void setSubType(java.lang.String subtype) throws MessagingExceptionSet the subtype. Throws MessagingException.- Overrides:
setSubTypein classMimeMultipart- Parameters:
subtype- Subtype- Throws:
MessagingException- always; can't change subtype
-
removeBodyPart
public boolean removeBodyPart(BodyPart part) throws MessagingException
Remove the specified part from the multipart message. Not allowed on a multipart/report object.- Overrides:
removeBodyPartin classMimeMultipart- Parameters:
part- The part to remove- Throws:
MessagingException- always
-
removeBodyPart
public void removeBodyPart(int index) throws MessagingExceptionRemove the part at specified location (starting from 0). Not allowed on a multipart/report object.- Overrides:
removeBodyPartin classMimeMultipart- Parameters:
index- Index of the part to remove- Throws:
MessagingException- always
-
addBodyPart
public void addBodyPart(BodyPart part) throws MessagingException
Adds a Part to the multipart. Not allowed on a multipart/report object.- Overrides:
addBodyPartin classMimeMultipart- Parameters:
part- The Part to be appended- Throws:
MessagingException- always
-
addBodyPart
public void addBodyPart(BodyPart part, int index) throws MessagingException
Adds a BodyPart at positionindex. Not allowed on a multipart/report object.- Overrides:
addBodyPartin classMimeMultipart- Parameters:
part- The BodyPart to be insertedindex- Location where to insert the part- Throws:
MessagingException- always
-
-