Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Question on Issue Move event

Srinivas Patruni September 16, 2014

I have implemented a listener on move event. I need to do some settings on the new issue based on the source issue details. How can i get the source issue details like issue type, project id, fix versions etc when issue is moved?

2 answers

0 votes
Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 16, 2014

The "issue moved" event contains a full set of issue data, as do all issue based events.

I've not written vast numbers of listeners, but the simple and few ones I have written all start with

public void onIssueEvent(IssueEvent issueEvent) {
   Long eventTypeId = issueEvent.getEventTypeId();
   Issue issue = issueEvent.getIssue();
Once you have the issue, you can use the full set of issue.getSomething calls from the API to fetch the data.
Srinivas Patruni September 16, 2014

Issue issue = issueEvent.getIssue(); issue object would be modified version but not the source issue. Am i wrong?

Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 16, 2014

Again - give us a chance, we do have other things in life, like family, work, food, cats and sleep.

Like Teja likes this
Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 16, 2014

Sorry, for the source, no, you'll need to read the history. Events are thrown at the end of the process, so only really have access to the current data.

0 votes
Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 16, 2014

Give us a chance! It's only been 2 hours. We're scattered around the planet!

Suggest an answer

Log in or Sign up to answer