private static void getIssueWithRelations(RedmineManager mgr) throws IOException, AuthenticationException, NotFoundException, RedmineException { Issue issue = mgr.getIssueById(24580, INCLUDE.relations); List<IssueRelation> r = issue.getRelations(); logger.debug("Retrieved relations " + r); }
private static void changeIssueStatus(RedmineManager mgr) throws IOException, AuthenticationException, RedmineException, NotFoundException { Issue issue = mgr.getIssueById(1771); issue.setSubject("new"); mgr.update(issue); }