get list of development panel branches in jira plugin sdk

Sarkis Chakarian May 12, 2017

I have created a plugin skeleton and am able to get the issue key of the current issue. However, I need to get the list of all development panel branches for the current issue so that I can generate a link in a panel on the right side with the branch names embedded in it.

Does anyone know how to get the list of development branches from the jira plugin SDK?

I am currently using the following to get the issue key:

public class jiraIssueInfo extends AbstractJiraContextProvider{
  @Override
  public Map getContextMap(ApplicationUser user, JiraHelper jiraHelper) {
  // TODO Auto-generated method stub
  Map contextMap = new HashMap();
  Issue currentIssue = (Issue) jiraHelper.getContextParams().get("issue");
  contextMap.put("IssueKey", currentIssue.getKey());
  return contextMap;
  }
}

So need to improve the above to get the list of branches...would really appreciate an answer if anyone knows!

Thank you

0 answers

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events