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: 

Get initial workflow status when changing workflows

Jón Arnar Briem
November 8, 2017

In my code I want to change an issue from one issue type to another. Doing this requires me to also change the workflow for the issue, and for that I am using this function:

workflowManager.migrateIssueToWorkflow(issue, workflow, status)

 issue and workflow are simple parameters to provide but determining which status should be the target is a bit more tricky. I want the issue to be as if it were newly created so I'm looking for the workflow's initial status. As far as I can tell there is no 

workflowManager.getWorkflowInitialStatus(workflow)

 or equivalent function. So far I've been using the following method to determine which Status to use:

issue.setIssueTypeId(newIssueTypeId);
String statusId = workflowManager
.getNextStatusIdForAction(issue, 1);
Status firstStatus = ComponentAccessor.getConstantsManager().getStatus(statusId); 

 This relies on the "Create" action always having the id "1" and the current implementation of workflowManager.getNextStatusIdForAction fetching workflow based on issue's type and project but not the workflow member variable, hence the issueTypeId is set before the status is fetched. 

There must be some more robust way of doing this. Does anyone have any ideas?

 

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Christian Vieweg
January 22, 2018

I achieved this as follows:

 

Collection<ActionDescriptor> allActions = workflow.getDescriptor().getInitialActions();
for (ActionDescriptor action : allActions) {
int step = action.getUnconditionalResult().getStep();
Status status = workflow.getLinkedStatus(workflow.getDescriptor().getStep(step));
// do stuff
break;
}