すべてのバージョン
Bamboo 5.13Bamboo 5.7.x
Bamboo 5.6.x
More...
Declaration of the interface has been altered from this:
public interface NotificationCondition extends BambooPluginModule
to this:
public interface NotificationCondition extends BambooPluginModule, Comparable<NotificationCondition>
Declarations of 3 methods in the NotificationManager interface have been altered, from this:
public NotificationRule createNotificationRule(NotificationSet notificationSet,
String conditionKey, String conditionData,
String emailRecipients, String imRecipients,
String users, String groups, Set roles);
public NotificationRule updateNotificationRule(NotificationRule oldRule,
String conditionKey, String conditionData,
String notificationEmailString, String notificationIMString,
String userArray, String groupArray, Set roles);
public List getAllConditions();
to this:
public NotificationRule createNotificationRule(NotificationSet notificationSet,
String conditionKey, String conditionData,
String emailRecipients, String imRecipients,
String users, String groups, Set<String> roles);
public NotificationRule updateNotificationRule(NotificationRule oldRule,
String conditionKey, String conditionData,
String notificationEmailString, String notificationIMString,
String userArray, String groupArray, Set<String> roles);
public List<NotificationCondition> getAllConditions();