Requirement to find time of last comment made by particular users.

kdatta21 September 12, 2017

Hi All,

I have a requirement of finding out the time of the last comment made by particular users in jira ticket . I am using java to retrieve that data , please guide.

Kind regards,
Kaushik

1 answer

0 votes
kdatta21 September 13, 2017

I have used this to fetch all the comments but it didn't work.Please help me out.


Promise<SearchResult> searchJqlPromise = client.getSearchClient().searchJql("query",200,0,null);
            int count=0;
            for (Issue issue : searchJqlPromise.claim().getIssues()) {
                Iterator<Comment> comments = issue.getComments().iterator();
                
               while (comments.hasNext()){
                    Comment comment = comments.next();
                    System.out.println("Comment : " + comment.getBody() + " by " + comment.getAuthor().getDisplayName());
                }

Suggest an answer

Log in or Sign up to answer