Interface ISendMessageRecipient
-
- All Superinterfaces:
Serializable
- All Known Subinterfaces:
ISendMessageRecipientEMail
,ISendMessageRecipientInbox
,ISendMessageRecipientUser
public interface ISendMessageRecipient extends Serializable
Marker interface that defines the recipient when sending a form record message.The recipient may be a user, a user's inbox that can receive a message. Therefor, there are the following sub-interfaces:
ISendMessageRecipientUser
for the user that is the recipientISendMessageRecipientInbox
for the recipient's inbox
- Since:
- 8.4.0
- Author:
- XIMA MEDIA GmbH
- See Also:
If the recipient is an authenticated user.
,If the recipient is a user's inbox.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getEmail()
-
-
-
Method Detail
-
getEmail
@Nullable String getEmail()
- Returns:
- The email address of the recipient. May be
null
if no email address could be determined for the recipient or if no email address was set.
-
-