To be more exact we would like the "issue.setType("1") call be configurable like the other fields: Project Key | description | summary | assignee within the following code:

https://github.com/jenkinsci/jira-plugin/blob/master/src/main/java/hudson/plugins/jira/JiraSession.java

public RemoteIssue createIssue(String projectKey, String description, String assignee, RemoteComponent[] components, String summary) throws RemoteException { RemoteIssue issue = new RemoteIssue(); issue.setProject(projectKey.toUpperCase()); issue.setDescription(description); issue.setSummary(summary); issue.setAssignee(assignee); issue.setType("1"); issue.setComponents(components); RemoteIssue createdIssue; createdIssue = service.createIssue(token, issue); return createdIssue; }

This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira

--
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to