Class Message
- java.lang.Object
-
- com.evolveum.midpoint.notifications.api.transports.Message
-
- All Implemented Interfaces:
DebugDumpable
public class Message extends Object implements DebugDumpable
- Author:
- mederly
-
-
Field Summary
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description Message()
Message(NotificationMessageType message)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
debugDump(int indent)
@NotNull List<NotificationMessageAttachmentType>
getAttachments()
@NotNull List<String>
getBcc()
String
getBody()
@NotNull List<String>
getCc()
String
getContentType()
String
getFrom()
String
getSubject()
@NotNull List<String>
getTo()
void
setAttachments(@NotNull List<NotificationMessageAttachmentType> attachments)
void
setBcc(@NotNull List<String> bcc)
void
setBody(String body)
void
setCc(@NotNull List<String> cc)
void
setContentType(String contentType)
void
setFrom(String from)
void
setSubject(String subject)
void
setTo(@NotNull List<String> to)
String
toString()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.evolveum.midpoint.util.DebugDumpable
debugDump, debugDumpLazily, debugDumpLazily
-
-
-
-
Constructor Detail
-
Message
public Message()
-
Message
public Message(NotificationMessageType message)
-
-
Method Detail
-
getBody
public String getBody()
-
setBody
public void setBody(String body)
-
getSubject
public String getSubject()
-
setSubject
public void setSubject(String subject)
-
getContentType
public String getContentType()
-
setContentType
public void setContentType(String contentType)
-
getFrom
public String getFrom()
-
setFrom
public void setFrom(String from)
-
getAttachments
@NotNull public @NotNull List<NotificationMessageAttachmentType> getAttachments()
-
setAttachments
public void setAttachments(@NotNull @NotNull List<NotificationMessageAttachmentType> attachments)
-
debugDump
public String debugDump(int indent)
- Specified by:
debugDump
in interfaceDebugDumpable
-
-