Class FixVersionHistoryCallback

java.lang.Object
com.atlassian.greenhopper.service.charts.FixVersionHistoryCallback
All Implemented Interfaces:
ChangeHistoryCallback<Long>

public class FixVersionHistoryCallback extends Object implements ChangeHistoryCallback<Long>
  • Constructor Details

    • FixVersionHistoryCallback

      public FixVersionHistoryCallback()
  • Method Details

    • changedTo

      public void changedTo(Long issueId, String issueKey, org.joda.time.DateTime changeTime, Long value)
      Description copied from interface: ChangeHistoryCallback
      Called for a change to a given new value
      Specified by:
      changedTo in interface ChangeHistoryCallback<Long>
      changeTime - : time when the change was performed, in UTC
      value - : 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 interface ChangeHistoryCallback<Long>
      changeTime - : time when the change was performed, in UTC
      value - : the old value the issue has changed from (e.g. old status or version ID)
    • before

      public void before(Long versionId)
      Description copied from interface: ChangeHistoryCallback
      Called before the change history for the given value is processed
      Specified by:
      before in interface ChangeHistoryCallback<Long>
    • after

      public void after(Long versionId)
      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 interface ChangeHistoryCallback<Long>
    • getChanges

      public Map<String,List<FixVersionChangeEntry>> getChanges()