Questions tagged [jira-rest-java-api]

REST Java Client for JIRA is for developers who want to integrate JIRA with other Java-based standalone or web applications.

REST Java Client for JIRA

This is not a plugin per se. It's a Java client library (usuable from any JVM-based language like Scala, Groovy, JRuby, etc.).

The purpose of this library is to make JIRA REST API very easy to use on the client side.

JRJC removes the need of traversing URIs, preparing requests and parsing the output.

This project is not actively supported by Atlassian, but feel free to contribute to it.

Source: REST Java Client for JIRA

306 questions
0
votes
1 answer

File Not found exception While using Httpsurlconnection with the REST "POST" function

i am facing problem when i am executing the following code. i am also having same kind of function which perform rest Method DELETE and PUT those are working great with the same config, but this is not. public void Rest_POST(String cookie) { String…
Sohil
  • 51
  • 7
0
votes
1 answer

Maven Not downloading some JARs when adding repository for another dependencies

I need jira-rest-java-client:jar:0.2-m1.jar. So I added the following in my pom.xml(Thanks to answer by @kahowell for my previous question to download that) central Atlassian Public Repository
user2094311
0
votes
1 answer

java.lang.ClassNotFoundException: com.atlassian.jira.rest.client.ProgressMonitor when trying to read JIRA Issue

I am very new to JIRA.Added dependencies for JRJC in maven. My scenario is to read Issue in my Java EE application. I have created a simple class like public class IssueCollector { public void readIssue(){ final JerseyJiraRestClientFactory…
shravani
  • 17
  • 7
0
votes
1 answer

Rest resource API in JIRA Plugin

Is it possible to create Rest Resource API into JIRA Plugin or have to create separate refapp as below and reference in JIRA plugin…
dsi
  • 3,199
  • 12
  • 59
  • 102
0
votes
2 answers

Searching and updating based on custom field - Jira Python

I have a custom field named "Detailed Status" of the type Text Field (< 255 characters) with custom field ID value of 10000. I am writing a JIRA Python script to update the value of this custom field of a number of issues having a particular value…
ramz
  • 168
  • 2
  • 6
  • 16
0
votes
1 answer

SOAPpy - create a Jira issue and define a component?

I can't figure how to create a jira issue and define its component with SOAPpy: client = so.WSDL.Proxy(cfg_wsld) auth_token = client.login(cfg_username, cfg_password) issue_params = dict() issue_params['project'] = project issue_params['type'] =…
abolotnov
  • 4,282
  • 9
  • 56
  • 88
0
votes
2 answers

JIRA SOAP: Error message: [Could not load validator class] for progressWorkflowAction

I am using JIRA's SOAP API to change defect's status by jumping from one status to another and everything was fine until I need to jump on "verified" status where user needs to enter some text into textbox field. I am using progressWorkflowAction…
Dmitry Bakaev
  • 129
  • 2
  • 14
0
votes
2 answers

Get JSON results in my Java class via Rest call

I have a javascript by which i call a rest api and get a JSON result , I need this result in a java class. Below is the script