And what is the problem that you are facing?
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.