jira-client
jira-client copied to clipboard
A simple JIRA REST client for Java
I tried to use Issue.getChangeLog() for that, but the change log for each issue is null. Any idea? Regards Maik
Hi, i needed a Feature to load all current User Filters. So there is now a new Method Filter.getAllFilter() and JireClient.getAllFilter() Feel free to merge this to current master. (and...
When I try to update field with type "option-with-child" (cascade-select): ``` schema: { type: "option-with-child", custom: "com.atlassian.jira.plugin.system.customfieldtypes:cascadingselect", customId: 10048 } ``` the exception is thrown: UnsupportedOperationException - option-with-child is not...
I'm trying to check if a comment is in a issue, using this code: ``` public boolean comprobarComentario(Issue issue, String cad) { boolean ret = true; Iterator ite; Comment comp;...
Hello, When using postman I can use the following request : /search?jql=project=myProject&expand=changelog. This returns me all issues of the project with the changelog. But when using the jira-client using with...
issue.transition() .field(Field.RESOLUTION, "Incomplete") .execute("Resolve Issue"); This line in the code does not change the Resolution. Please help.
Any body can help with that? Many thanks.
I am trying to return values of an existing issue in JIRA using the following code and I do not get values from Custom Fields. Only the Global field values...
Hi, I am trying to integrate JIRA. PFB my code. import net.rcarz.jiraclient.BasicCredentials; import net.rcarz.jiraclient.Issue; import net.rcarz.jiraclient.JiraClient; import net.rcarz.jiraclient.JiraException; public class Jira { ``` public static void main(String[] args) { BasicCredentials...
net.rcarz.jiraclient.agile package is not visible in the caller classes , so that I can use the API methods in net.rcarz.jiraclient.agile.Board and net.rcarz.jiraclient.agile.Sprint etc...and many more