Interface NotificationRule
-
- All Superinterfaces:
BambooIdProvider
,BambooObject
,Comparable<NotificationRule>
- All Known Implementing Classes:
NotificationRuleImpl
public interface NotificationRule extends BambooObject, Comparable<NotificationRule>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description String
getConditionData()
@Nullable String
getConditionKey()
NotificationSet
getNotificationSet()
Object
getNotificationTypeForView()
Deprecated.since 6.3, useNotificationManager.getNotificationType(NotificationRule)
@Nullable String
getRecipient()
@Nullable String
getRecipientType()
void
setConditionData(String conditionData)
void
setConditionKey(String conditionKey)
void
setNotificationManager(NotificationManager manager)
Deprecated.since 6.3 without replacementvoid
setNotificationSet(NotificationSet notificationSet)
void
setRecipient(String recipient)
void
setRecipientType(String recipientType)
-
Methods inherited from interface com.atlassian.bamboo.core.BambooIdProvider
getId
-
Methods inherited from interface com.atlassian.bamboo.core.BambooObject
setId
-
Methods inherited from interface java.lang.Comparable
compareTo
-
-
-
-
Method Detail
-
getConditionKey
@Nullable @Nullable String getConditionKey()
-
setConditionKey
void setConditionKey(String conditionKey)
-
getConditionData
String getConditionData()
-
setConditionData
void setConditionData(String conditionData)
-
getNotificationSet
NotificationSet getNotificationSet()
-
setNotificationSet
void setNotificationSet(NotificationSet notificationSet)
-
getNotificationTypeForView
@Deprecated Object getNotificationTypeForView()
Deprecated.since 6.3, useNotificationManager.getNotificationType(NotificationRule)
Hides whether it is a condition or a notificationType from the UI.
-
setNotificationManager
@Deprecated void setNotificationManager(NotificationManager manager)
Deprecated.since 6.3 without replacement
-
getRecipient
@Nullable @Nullable String getRecipient()
-
setRecipient
void setRecipient(String recipient)
-
getRecipientType
@Nullable @Nullable String getRecipientType()
-
setRecipientType
void setRecipientType(String recipientType)
-
-