Пример #1
0
 private static void tryGetNews(RedmineManager mgr)
     throws IOException, AuthenticationException, RedmineException, NotFoundException {
   List<News> news = mgr.getNews(null);
   for (News aNew : news) {
     System.out.println(aNew);
   }
 }