Package lumis.portal.sendmail
Interface IMailDestination
-
- All Superinterfaces:
IMailSendStatus
@StableMinor(version="14.2", sinceVersion="4.0") public interface IMailDestination extends IMailSendStatus
Specifies a destination of a mail.- Since:
- 4.0.4
- Version:
- $Revision: 24985 $ $Date: 2022-05-02 23:04:30 -0300 (Mon, 02 May 2022) $
- 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 String
getEmailAddress()
Returns the mail address of this destination.String
getId()
Returns a unique identifier for this destination.String
getName()
Return the name of this destination.void
setEmailAddress(String email)
Sets the mail address of this destination.void
setName(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
String getEmailAddress()
Returns the mail address of this destination.- Returns:
- the mail address of this destination.
- Since:
- 4.0.4
-
setEmailAddress
void setEmailAddress(String email)
Sets the mail address of this destination.- Parameters:
email
- the mail address value to set.- Since:
- 4.0.4
-
getId
String getId()
Returns a unique identifier for this destination.- Returns:
- a unique identifier for this destination.
- Since:
- 4.0.4
-
getName
String getName()
Return the name of this destination.- Returns:
- the name of this destination.
- Since:
- 4.0.4
-
setName
void setName(String name)
Sets the name of this destination.- Parameters:
name
- the name value to set.- Since:
- 4.0.4
-
-