Interface NotificationTask
-
- All Superinterfaces:
Entity
,Serializable
,Task<NotificationTask>
- All Known Implementing Classes:
JPANotificationTask
public interface NotificationTask extends Task<NotificationTask>
-
-
Field Summary
-
Fields inherited from interface org.apache.syncope.core.persistence.api.entity.Entity
EMAIL_PATTERN, ID_PATTERN, ID_REGEX
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AnyTypeKind
getAnyTypeKind()
String
getEntityKey()
String
getHtmlBody()
Notification
getNotification()
Set<String>
getRecipients()
String
getSender()
String
getSubject()
String
getTextBody()
TraceLevel
getTraceLevel()
boolean
isExecuted()
void
setAnyTypeKind(AnyTypeKind anyTypeKind)
void
setEntityKey(String entityKey)
void
setExecuted(boolean executed)
void
setHtmlBody(String htmlBody)
void
setNotification(Notification notification)
void
setSender(String sender)
void
setSubject(String subject)
void
setTextBody(String textBody)
void
setTraceLevel(TraceLevel traceLevel)
-
-
-
Method Detail
-
getNotification
Notification getNotification()
-
setNotification
void setNotification(Notification notification)
-
getEntityKey
String getEntityKey()
-
setEntityKey
void setEntityKey(String entityKey)
-
getAnyTypeKind
AnyTypeKind getAnyTypeKind()
-
setAnyTypeKind
void setAnyTypeKind(AnyTypeKind anyTypeKind)
-
setSender
void setSender(String sender)
-
getSender
String getSender()
-
getSubject
String getSubject()
-
setSubject
void setSubject(String subject)
-
setTextBody
void setTextBody(String textBody)
-
getTextBody
String getTextBody()
-
setHtmlBody
void setHtmlBody(String htmlBody)
-
getHtmlBody
String getHtmlBody()
-
setTraceLevel
void setTraceLevel(TraceLevel traceLevel)
-
getTraceLevel
TraceLevel getTraceLevel()
-
isExecuted
boolean isExecuted()
-
setExecuted
void setExecuted(boolean executed)
-
-