gpt4 book ai didi

java - 如何将自定义通知类型添加到jira

转载 作者:行者123 更新时间:2023-11-29 09:14:43 24 4
gpt4 key购买 nike

我在添加自定义“通知类型”时遇到问题(页面上可见的第二列 - http://host:port/secure/admin/AddNotification!default.jspa)。我正在使用 jira 4.2,我发现 Jira 中负责此任务的接口(interface)是 http://docs.atlassian.com/software/jira/docs/api/4.2/com/atlassian/jira/notification/NotificationType.html ,但是我不知道下一步该怎么做。请提供任何帮助:)

最佳答案

好的解决方案是扩展类 AbstractNotificationType - 扩展类 ex。我的通知类型然后像下面的代码一样创建另一个类:

    public MyNotificationUpdater() {

NotificationTypeManager notificationTypeManager = ComponentManager
.getComponentInstanceOfType(NotificationTypeManager.class);
Map types = notificationTypeManager.getTypes();
if (types == null) {
types = new HashMap<String, Object>();
}
types.put("MyNotificationType", new MyNotificationType());
notificationTypeManager.setSchemeTypes(types);
}

关于java - 如何将自定义通知类型添加到jira,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10227047/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com