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

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
TAGS
atlassian, loom, loom for training, loom for teaching, video training, async learning, online education, screen recording, loom tutorials, loom use cases, atlassian learning, team training tools, instructional video, virtual training tools

🛗 Elevate Your Training and Enablement with Loom

Join us June 26, 11am PT for a webinar with Atlassian Champion Robert Hean & Loom’s Brittany Soinski. Hear tips, stories, and get your burning questions answered. Learn how Loom makes training and enablement easier. Don’t miss it!

Register today
AUG Leaders

Atlassian Community Events