Skip to content

prasannjeet/JiraRestClient

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#JiraRestClient

A simple JAVA Client to access the JIRA© REST-API. Originally forked from this Github-Repo.

#Usage

Everything you need is a ExecutorService (java.util.concurrent.ExecutorService) for Thread-Pooling.

  ExecutorService executorService = Executors.newFixedThreadPool(100);
  ProxyHost proxy = new ProxyHost("proxy", 3128);
  URI uri = new URI(URL_TO_JIRA_SERVER);
  JiraRestClient jiraRestClient = new JiraRestClient(executorService);
  jiraRestClient.connect(uri, USERNAME, PASSWORD);

After you create the JiraRestClient and connecting to your JIRA©, you can get the specific client from the JiraRestClient.

  • IssueClient - everything to issues. Include also Attachments, Transitions, Comments and Worklog
  • ProjectClient - everything to projects. Include also Components and Versions
  • UserClient - everything to users.
  • SearchClient - for jql search
  • SystemClient - every global Info form the Jira. You can get Status, Priority, IssueTypes Informations.

#Tests

For more Information about usage and some Code Snippets look into the Unit-Tests inside the project.

About

A simple Java Client for the JIRA Rest-API.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%