Package lumis.portal.sendmail
Interface IMailDestination
-
- All Superinterfaces:
IMailSendStatus
@StableMinor(version="16.0", sinceVersion="4.0") public interface IMailDestination extends IMailSendStatus
Specifies a destination of a mail.- Since:
- 4.0.4
- Version:
- $Revision: 25808 $ $Date: 2023-07-04 15:20:55 -0300 (Tue, 04 Jul 2023) $
- See Also:
ISendMailManager.createMailDestination()
-
-
Field Summary
-
Fields inherited from interface lumis.portal.sendmail.IMailSendStatus
STATUS_SEND_PENDING, STATUS_SENDING, STATUS_SENT_ERROR, STATUS_SENT_OK
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getEmailAddress()
Returns the mail address of this destination.java.lang.String
getId()
Returns a unique identifier for this destination.java.lang.String
getName()
Return the name of this destination.void
setEmailAddress(java.lang.String email)
Sets the mail address of this destination.void
setName(java.lang.String name)
Sets the name of this destination.-
Methods inherited from interface lumis.portal.sendmail.IMailSendStatus
getErrorMessage, getSentDateTime, getStatus, setErrorMessage, setSentDateTime, setStatus
-
-
-
-
Method Detail
-
getEmailAddress
java.lang.String getEmailAddress()
Returns the mail address of this destination.- Returns:
- the mail address of this destination.
- Since:
- 4.0.4
-
setEmailAddress
void setEmailAddress(java.lang.String email)
Sets the mail address of this destination.- Parameters:
email
- the mail address value to set.- Since:
- 4.0.4
-
getId
java.lang.String getId()
Returns a unique identifier for this destination.- Returns:
- a unique identifier for this destination.
- Since:
- 4.0.4
-
getName
java.lang.String getName()
Return the name of this destination.- Returns:
- the name of this destination.
- Since:
- 4.0.4
-
setName
void setName(java.lang.String name)
Sets the name of this destination.- Parameters:
name
- the name value to set.- Since:
- 4.0.4
-
-