You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @rcarz ,
getiing issue with createIsuue in JiraClient
BasicCredentials creds = new BasicCredentials("*****", "***");
JiraClient jira = new JiraClient("http://localhost:8080/login.jsp", creds);
/ Create a new issue. */
Issue newIssue = jira.createIssue("WEB", "Bug")
.field(Field.SUMMARY, "This is test bug")
.field(Field.DESCRIPTION, "Description of test bug.")
.field(Field.REPORTER, "se.pradeepkumar")
.field(Field.ASSIGNEE, "se.pradeepkumar")
.execute();
System.out.println(newIssue);
/* Retrieve issue WEB-1 from JIRA. We'll get an exception if this fails. */
Issue issue = jira.getIssue("WEB-1");
/* Print the issue key. */
System.out.println(issue);
/* You can also do it like this: */
System.out.println(issue.getKey());
The text was updated successfully, but these errors were encountered:
Hi @rcarz ,
getiing issue with createIsuue in JiraClient
BasicCredentials creds = new BasicCredentials("*****", "***");
JiraClient jira = new JiraClient("http://localhost:8080/login.jsp", creds);
/ Create a new issue. */
Issue newIssue = jira.createIssue("WEB", "Bug")
.field(Field.SUMMARY, "This is test bug")
.field(Field.DESCRIPTION, "Description of test bug.")
.field(Field.REPORTER, "se.pradeepkumar")
.field(Field.ASSIGNEE, "se.pradeepkumar")
.execute();
System.out.println(newIssue);
The text was updated successfully, but these errors were encountered: