Project

General

Profile

Actions

Rest api with java » History » Revision 11

« Previous | Revision 11/19 (diff) | Next »
Etienne Massip, 2012-05-31 19:53
Updated project location.


Using the REST API with Java

Redmine Java API library is a FREE third-party Java library that can be used to access the Redmine API. It is released under Apache 2 open-source license.

Sample usage:

import java.io.IOException;
import java.net.URISyntaxException;
import java.util.List;
import org.redmine.ta.beans.Issue;

public class Simple {
    private static String redmineHost = "https://www.hostedredmine.com";
    private static String apiAccessKey = "a3221bfcef5750219bd0a2df69519416dba17fc9";
    private static String projectKey = "taskconnector-test";
    private static Integer queryId = null; // any

    public static void main(String[] args) {
        RedmineManager mgr = new RedmineManager(redmineHost, apiAccessKey);
        try {
            tryGetIssues(mgr);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    private static void tryGetIssues(RedmineManager mgr) throws Exception {
        List<Issue> issues = mgr.getIssues(projectKey, queryId);
        for (Issue issue : issues) {
            System.out.println(issue.toString());
        }
    }
}

Create Issue:

    Issue issueToCreate = new Issue();
    issueToCreate.setSubject("This is the summary line 123");
    Issue newIssue = mgr.createIssue(PROJECT_KEY, issueToCreate);

Get issue by ID:

    Issue issue = mgr.getIssueById(123);

Updated by Etienne Massip almost 12 years ago · 11 revisions