How to close parent Task Programmatically using java ?

Nageswarara Rao February 6, 2013

Hi,

Help me on this problem

Thanks in advance

2 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 Leaders.
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 Leaders.
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

Suggest an answer

Log in or Sign up to answer