Do you think can we get all status in a workflow?
Hi Tung,
programmatically you can do that using the following code :
From an issue key
WorkflowManager workflowManager = ComponentAccessor.getWorkflowManager(); IssueManager issueManager = ComponentAccessor.getIssueManager(); Issue issue = issueManager.getIssueObject("YOUR ISSUE KEY"); List<Status> statuses = workflowManager.getWorkflow(issue).getLinkedStatusObjects();
From a workflow name
WorkflowManager workflowManager = ComponentAccessor.getWorkflowManager(); List<Status> statuses = workflowManager.getWorkflow("YOUR WORKFLOW NAME").getLinkedStatusObjects();
Hope this helps,
Fabio
Thanks for your answer,
but i think Component Accessor only work in JIRA plugin.
Sorry because i forget talk about my problem, I want get all status in workflow from out side JIRA, not in plugin. (like use JRJC... but JRJC not surport get status)
Do you think can we config Component Accessor for other JIRA?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If it doesn't you have to write your own rest endpoint with code similar to Fabio's... the rest api is not completely complete.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Jamie suggested approach is correct.
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.