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

How to assign a responsible user for a build with Bamboo's Java API

Hi,

I want to use the class com.atlassian.bamboo.brokenbuildtracker.data.TrackingEntryManager to programatically assign a responsible user for a build with Bamboo's Java API:

TrackingEntry trackingEntry = trackingEntryManager.getTrackingEntryByResultId(taskContext.getBuildContext().getEntityId());
trackingEntryManager.addUser(trackingEntry, "admin", null);
eventPublisher.publish(new UserRespAddedEvent(this, taskContext.getBuildContext().getPlanResultKey(), "admin", null, trackingEntry));

Unfortunately, all my attemtpts to inject the TrackingEntryManager failed so far. I tried it with constructor injection and using a corresponding component-import in my atlassian-plugin.xml

class MyClass {
TrackingEntryManager trackingEntryManager;

MyClass(TrackingEntryManager trackingEntryManager) {
this.trackingEntryManager = trackingEntryManager;
}
}

as well as with accessing it directly from ContainerManager:

TrackingEntryManager trackingEntryManager = (TrackingEntryManager) ContainerManager.getComponent("trackingEntryManager");

 Both attempts failed:

org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'trackingEntryManager' is defined

Any ideas how to use this class?

Thanks in advance,

Michael 

1 answer

0 votes
Robert Giddings _Adaptavist_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Jul 19, 2018 • edited

Hi @Michael T.

Did you have any luck resolving this? As I am also trying to gain access to TrackingEntryManager.

Thanks,

Rob

Hi @Robert Giddings _Adaptavist_

Unfortunately, not. Still looking for a solution :-)

Best regards,
Michael

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events