Package org.jbpm.services.api.admin
Interface TaskNotification
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
TaskNotificationImpl
public interface TaskNotification extends Serializable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<org.kie.api.task.model.OrganizationalEntity>
getBusinessAdministrators()
Returns list of business admins that notification will be sent toString
getContent()
Returns the content for this notificationDate
getDate()
Returns date that the notification is schedule to happenLong
getId()
Returns unique id of the task notificationString
getName()
Returns optional name of the notificationList<org.kie.api.task.model.OrganizationalEntity>
getRecipients()
Returns list of recipients that notification will be sent toString
getSubject()
Returns the subject line for this notificationboolean
isActive()
Returns if given notification is active
-
-
-
Method Detail
-
getId
Long getId()
Returns unique id of the task notification- Returns:
- task notification id
-
getName
String getName()
Returns optional name of the notification- Returns:
- notification name
-
getDate
Date getDate()
Returns date that the notification is schedule to happen- Returns:
- time notification is scheduled
-
getRecipients
List<org.kie.api.task.model.OrganizationalEntity> getRecipients()
Returns list of recipients that notification will be sent to- Returns:
- list of recipients
-
getBusinessAdministrators
List<org.kie.api.task.model.OrganizationalEntity> getBusinessAdministrators()
Returns list of business admins that notification will be sent to- Returns:
- business admin list
-
getSubject
String getSubject()
Returns the subject line for this notification- Returns:
- notification subject
-
getContent
String getContent()
Returns the content for this notification- Returns:
- notification content
-
isActive
boolean isActive()
Returns if given notification is active- Returns:
- active
-
-