Interface HistoricalService
public interface HistoricalService
Historical service
-
Method Summary
Modifier and TypeMethodDescriptionList<com.atlassian.jira.project.Project>
Get All Project changed after date.getAllValuesAfterDate
(com.atlassian.jira.project.Project project, Date date) Get all historicalField after the date.getHistorical
(Long projectId) Get the list of historical fields for a project.getValueByDate
(com.atlassian.jira.project.Project project, Field field, Date date) Get Value by Date
-
Method Details
-
getHistorical
Get the list of historical fields for a project.- Parameters:
projectId
- the project id- Returns:
- the list of historical fields
-
getValueByDate
Get Value by Date- Parameters:
project
-field
-date
-- Returns:
- Value in this project in a specific date
-
getAllValuesAfterDate
List<List<HistoricalField>> getAllValuesAfterDate(com.atlassian.jira.project.Project project, Date date) Get all historicalField after the date. Return a list with all its historicalFields by transaction- Parameters:
project
-date
-- Returns:
- List of HistoricalField after the date for the given project
-
getAllChangedProjectsAfterDate
Get All Project changed after date. Return a list of project- Parameters:
date
-- Returns:
- List of project
-