It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
Hi,
Help me on this problem
Thanks in advance
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
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreHey Atlassian Community! Today we are launching a bunch of customer stories about the amazing work teams, like Dropbox and Twilio, are doing with Jira. You can check out the stories here. The thi...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.