Class FixVersionHistoryCallback
java.lang.Object
com.atlassian.greenhopper.service.charts.FixVersionHistoryCallback
- All Implemented Interfaces:
ChangeHistoryCallback<Long>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Called after the change history for the given value has been processed, and before the next value will be processed.void
Called before the change history for the given value is processedvoid
changedFrom
(Long issueId, String issueKey, org.joda.time.DateTime changeTime, Long value) Called for a change from a given previous valuevoid
Called for a change to a given new value
-
Constructor Details
-
FixVersionHistoryCallback
public FixVersionHistoryCallback()
-
-
Method Details
-
changedTo
Description copied from interface:ChangeHistoryCallback
Called for a change to a given new value- Specified by:
changedTo
in interfaceChangeHistoryCallback<Long>
changeTime
- : time when the change was performed, in UTCvalue
- : the new value (e.g. Status or fix version ID) the issue has changed to
-
changedFrom
public void changedFrom(Long issueId, String issueKey, org.joda.time.DateTime changeTime, Long value) Description copied from interface:ChangeHistoryCallback
Called for a change from a given previous value- Specified by:
changedFrom
in interfaceChangeHistoryCallback<Long>
changeTime
- : time when the change was performed, in UTCvalue
- : the old value the issue has changed from (e.g. old status or version ID)
-
before
Description copied from interface:ChangeHistoryCallback
Called before the change history for the given value is processed- Specified by:
before
in interfaceChangeHistoryCallback<Long>
-
after
Description copied from interface:ChangeHistoryCallback
Called after the change history for the given value has been processed, and before the next value will be processed.- Specified by:
after
in interfaceChangeHistoryCallback<Long>
-
getChanges
-