com.businessobjects.sdk.plugin.desktop.common
Interface IAlertDeliveryAttachment


public interface IAlertDeliveryAttachment

This interface defines settings for attachments that are delivered with an alert notifications.

Since:
4.0

Method Summary
 java.lang.String getEmbedName()
          Returns the name of the attachment.
 java.lang.String getMimeType()
          Returns the MIME type of the attachment.
 void setEmbedName(java.lang.String sVal)
          Sets the name of the attachment.
 void setMimeType(java.lang.String sVal)
          Sets the MIME type of the attachment.
 

Method Detail

getMimeType

java.lang.String getMimeType()
Returns the MIME type of the attachment. For example, this method returns "image/gif" for GIF files and "video/mpeg" for MPEG files.

Returns:
A String object that contains the MIME type of the attachment.
See Also:
IAlertDeliveryAttachment.setMimeType(java.lang.String)

setMimeType

void setMimeType(java.lang.String sVal)
Sets the MIME type of the attachment. For example, use "image/gif" for GIF files or "video/mpeg" for MPEG fiels.

Parameters:
sVal - A String object that contains the MIME type of the attachment.
See Also:
IAlertDeliveryAttachment.getMimeType()

getEmbedName

java.lang.String getEmbedName()
Returns the name of the attachment.

Returns:
A String object that contains the name of the attachment.
See Also:
IAlertDeliveryAttachment.setEmbedName(java.lang.String)

setEmbedName

void setEmbedName(java.lang.String sVal)
Sets the name of the attachment.

Parameters:
sVal - A String object that contains the name of the attachment.
See Also:
IAlertDeliveryAttachment.getEmbedName()