|| bodyPart instanceof UnsupportedAttachmentPart) {
// Extract the content type and name from the attachments
final String contentType = bodyPart.getContentType();
String name;
if (bodyPart instanceof UnsupportedAttachmentPart) {
final UnsupportedAttachmentPart uap =
(UnsupportedAttachmentPart) bodyPart;
name = uap.getName();
} else // The bodyPart is a SupportedAttachmentPart
{
final SupportedAttachmentPart sap =
(SupportedAttachmentPart) bodyPart;
name = sap.getName();