Interface Notification
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
NotificationDescriptor
,NotificationImpl
public interface Notification extends Serializable
-
-
Field Summary
Fields Modifier and Type Field Description static String
EMAIL_NOTIFICATION
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getAutoSubscribed()
String
getAvailableIn()
String
getChannel()
boolean
getEnabled()
String
getLabel()
String
getName()
String
getSubject()
String
getSubjectTemplate()
String
getTemplate()
String
getTemplateExpr()
-
-
-
Field Detail
-
EMAIL_NOTIFICATION
static final String EMAIL_NOTIFICATION
- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
String getName()
- Returns:
- the name.
-
getChannel
String getChannel()
- Returns:
- the channel.
-
getTemplate
String getTemplate()
- Returns:
- the template.
-
getAutoSubscribed
boolean getAutoSubscribed()
- Returns:
- the autoSubscribed.
-
getSubject
String getSubject()
- Returns:
- the subject.
-
getSubjectTemplate
String getSubjectTemplate()
- Returns:
- the subject template.
-
getAvailableIn
String getAvailableIn()
- Returns:
- the availableIn.
-
getLabel
String getLabel()
-
getEnabled
boolean getEnabled()
-
getTemplateExpr
String getTemplateExpr()
- Returns:
- the mvelExpr used to evaluate the mail template name
- Since:
- 5.6
-
-