You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Im trying to recreate notifications in Bamboo build plan from Java code.
new Notification().type(new XFailedChainsNotification().numberOfFailures(1))
.recipients(new UserRecipient("admin")),
But I want to use Slack channel as recipient. There's no appropriate recipient class in Java library.
There's HipChatRecipient or ImRecipient, but it doesn't look appropriate.
We have Slack support on the server . But how would interaction with it from Java code look like?
Since Slack integration is not developed by Atlassian, it's not fully supported by Specs. There's however generic support for notification plugins. In case of Slack recipient the code looks like this:
new AnyNotificationRecipient(new AtlassianModule("com.atlassian.bamboo.plugins.bamboo-slack:recipient.slack"))
.recipientString("slack_webhook_url|#channel||")
And a tip: in Plan edit screen there's an option in 'Actions' menu to view plan as Java Specs. You can use that to figure out how you can achieve things in Specs, which is especially useful in cases like this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.