Manipulating JIRA entities from a plugin

Prameesha Samarakoon May 19, 2014

Hi,

I have a requirement to get the 'Resolved by' value for a issue from a plug-in. This information has to be extracted from the history, changegroup and changeitem tables of JIRA. Is there a possible way of getting this information using the ofBizDelegator? If so how could I combine these two entities to get the data I require? or is the only option to use direct database queries?

could someone please point out a link which highlights how to combine multiple entities with selection criteria based on both entities using the ofBizDelegator?

Thanks

1 answer

1 accepted

1 vote
Answer accepted
Henning Tietgens
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.
May 19, 2014

Use ChangeHistoryManager to getAllChangeItems() of the issue. Looking into the ChangeHistoryItems where the field (getField()) "status" was changed to "Resolved" (using the values of getTos()) you can determine the user (getUserKey()) who changed the issue.

Prameesha Samarakoon May 21, 2014

This worked perfectly, Thank you very much for the prompt response.

Suggest an answer

Log in or Sign up to answer