How to get last update status in Java code - Jira 5

Mik February 12, 2013

Hi Guys.

How to get last update status in Java code ?

I have wrote function, but I gave me only Created date :(

I have not found something like getUpdated()

public static Date getLastUpdateSingleField(Issue issue, String field) {

ChangeHistoryManager changeHistoryManager = ComponentManager.getComponentInstanceOfType(ChangeHistoryManager.class);

List<Date> dList = new LinkedList<Date>();

List<ChangeItemBean> listChH = changeHistoryManager.getChangeItemsForField(issue, field);

for (ChangeItemBean changeItemBean : listChH) {

dList.add(changeItemBean.getCreated());

}

if(dList.size()==0) {

return null;

}

Collections.sort(dList);

return dList.get(dList.size()-1);

}


Many thanks for any help

Regards

Mik

1 answer

0 votes
Renjith Pillai
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 16, 2013

changeItem getCreated itself is the update time for the issue. There is no other timestamp associated with a change history item.

Suggest an answer

Log in or Sign up to answer