The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

Issue Component Field

Batuhan Kandiran
October 2, 2012

Hi Everyone,

I want to set component/s field of issue when its created with groovy script.

the problem is here : inherited issue object is instance of Issue class.

i have to change it MutableIssue in order to use setComponents(Collection<GenericValue> args) method

i wrote

IssueFactory issueFactory = ComponentManager.getInstance().getIssueFactory();

MutableIssue mi = issueFactory.getIssue(issue.getGenericValue());

mi.setComponents(predefinedCollection);

it doesnt work could you help me ?

2 answers

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

0 votes
Jobin Kuruvilla [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 Champions.
October 2, 2012

The right way to update issues is to call IssueService.update method. It does validations, throws events etc.

Batuhan Kandiran
October 4, 2012

Thank you

Vishwajeet and Jobin.

I resolved the problem.

0 votes
Vishwajeet Singh
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 Champions.
October 2, 2012

You need to call mi.store() after you set the components http://docs.atlassian.com/jira/latest/com/atlassian/jira/issue/IssueImpl.html#store()

TAGS
AUG Leaders

Atlassian Community Events