Interface HistoricalService
public interface HistoricalService
Historical service
- 
Method SummaryModifier 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- 
getHistoricalGet the list of historical fields for a project.- Parameters:
- projectId- the project id
- Returns:
- the list of historical fields
 
- 
getValueByDateGet Value by Date- Parameters:
- project-
- field-
- date-
- Returns:
- Value in this project in a specific date
 
- 
getAllValuesAfterDateList<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
 
- 
getAllChangedProjectsAfterDateGet All Project changed after date. Return a list of project- Parameters:
- date-
- Returns:
- List of project
 
 
-