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
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
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.