Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,557,897
Community Members
 
Community Events
184
Community Groups

How to access bamboo components from event listener ?

I'm trying to have some work be done after a failure on a build has occurred. I need access to the build manager but can't find a way to do so.

The documentation I found seems to be deprecated:

https://developer.atlassian.com/server/bamboo/accessing-bamboo-components-from-plugin-modules/

How can I access the build manager in an event listener so I can search for a specific build?

1 answer

1 accepted

0 votes
Answer accepted

Found the solution.

Using the deprecated document:

https://developer.atlassian.com/server/bamboo/accessing-bamboo-components-from-plugin-modules/

 

Along with the information from here:

https://bitbucket.org/atlassian/atlassian-spring-scanner?_ga=2.200096935.827920754.1537203458-197927870.1530309398

I was able to use bamboo components in my plugin module.

Example:

@Scanned
public class SomeEventListener{
@ComponentImport
private final ResultsSummaryManager resultsSummaryManager;

@ComponentImport
private final CachedPlanManager planManager;

public FailedPlanEventListener(ResultsSummaryManager resultsSummaryManager,
CachedPlanManager planManager)
{
this.resultsSummaryManager = resultsSummaryManager;
this.planManager = planManager;
}

Note the @Scanned and @ComponentImport annotations are essential.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events