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: 

How to close parent Task Programmatically using java ?

Nageswarara Rao
Contributor
February 6, 2013

Hi,

Help me on this problem

Thanks in advance

2 answers

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Timothy
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.
February 6, 2013

And what is the problem that you are facing?

0 votes
MatthewC
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.
February 6, 2013

Hi there,

There some documentation over at the developer sire which shoes you. You need to use the Issue Service object to transition your issue through the workflow, assuming your issue has a valid route to the close status, then it's quite simple.

IssueInputParameters issueInputParameters = new IssueInputParametersImpl();
issueInputParameters.setAssigneeId("newdude");
 
IssueService issueService = ComponentManager.getInstance().getIssueService();
 
TransitionValidationResult transitionValidationResult = issueService.validateTransition(user, 12345L, 10000L, issueInputParameters);
 
if (transitionValidationResult.isValid())
{
    IssueResult transitionResult = issueService.transition(user, transitionValidationResult);
    if (!transitionResult.isValid())
    {
        // Do something
    }
}

What I wouldn't recommend is tryng to just update status in any kind of way.

https://developer.atlassian.com/display/JIRADEV/Performing+Issue+Operations

Look down under Transitioning an existing issue

TAGS
AUG Leaders

Atlassian Community Events