Package org.apache.syncope.common.lib.to
Class NotificationTaskTO
- java.lang.Object
-
- org.apache.syncope.common.lib.to.AbstractStartEndBean
-
- org.apache.syncope.common.lib.to.TaskTO
-
- org.apache.syncope.common.lib.to.NotificationTaskTO
-
- All Implemented Interfaces:
Serializable
,BaseBean
,EntityTO
public class NotificationTaskTO extends TaskTO
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NotificationTaskTO()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
AnyTypeKind
getAnyTypeKind()
String
getDiscriminator()
String
getEntityKey()
String
getHtmlBody()
String
getNotification()
Set<String>
getRecipients()
String
getSender()
String
getSubject()
String
getTextBody()
TraceLevel
getTraceLevel()
int
hashCode()
boolean
isExecuted()
void
setAnyTypeKind(AnyTypeKind anyTypeKind)
void
setEntityKey(String entityKey)
void
setExecuted(boolean executed)
void
setHtmlBody(String htmlBody)
void
setNotification(String notification)
void
setSender(String sender)
void
setSubject(String subject)
void
setTextBody(String textBody)
void
setTraceLevel(TraceLevel traceLevel)
-
Methods inherited from class org.apache.syncope.common.lib.to.TaskTO
getExecutions, getKey, getLastExecutor, getLatestExecStatus, setDiscriminator, setKey, setLastExecutor, setLatestExecStatus, toString
-
Methods inherited from class org.apache.syncope.common.lib.to.AbstractStartEndBean
getEnd, getStart, setEnd, setStart
-
-
-
-
Method Detail
-
getDiscriminator
public String getDiscriminator()
- Specified by:
getDiscriminator
in classTaskTO
-
getNotification
public String getNotification()
-
setNotification
public void setNotification(String notification)
-
getAnyTypeKind
public AnyTypeKind getAnyTypeKind()
-
setAnyTypeKind
public void setAnyTypeKind(AnyTypeKind anyTypeKind)
-
getEntityKey
public String getEntityKey()
-
setEntityKey
public void setEntityKey(String entityKey)
-
getSender
public String getSender()
-
setSender
public void setSender(String sender)
-
getSubject
public String getSubject()
-
setSubject
public void setSubject(String subject)
-
getTextBody
public String getTextBody()
-
setTextBody
public void setTextBody(String textBody)
-
getHtmlBody
public String getHtmlBody()
-
setHtmlBody
public void setHtmlBody(String htmlBody)
-
isExecuted
public boolean isExecuted()
-
setExecuted
public void setExecuted(boolean executed)
-
getTraceLevel
public TraceLevel getTraceLevel()
-
setTraceLevel
public void setTraceLevel(TraceLevel traceLevel)
-
-