RedmineManager redmine = RedmineManagerFactory.createWithApiKey(rmUri , rmAccessKey);
final Map<String, String> params = new HashMap<>();
Collection<Journal> journals;
params.put("issue_id", "107263"); // 107263 can be replaced by any valid issue id
params.put("include", "journals");
redmine.getIssueManager().getIssues(params).getResults();
for (Issue issue : issues) {
journals = issue.getJournals(); // journals.size() = 0 but should be equal to 11 :(
// ...
}
Any idea about this result ? Did I do something wrong with getIssues() ?
Here a sample :
Any idea about this result ? Did I do something wrong with getIssues() ?