The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.
Hi, If you are running self-managed environments and looking to adopt modern infrastructure, Bamboo Data Center can now be deployed in a Kubernetes cluster. By leveraging Kubernetes, you can easily...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.