Interface ConfigHistoryManager
-
- All Known Implementing Classes:
ConfigHistoryManagerImpl
public interface ConfigHistoryManager- Author:
- Maxim.Manuylov Date: 20.01.11
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FileHistorygetAuthConfigHistory()FileHistorygetBuildTypeConfigHistory(String buildTypeId)FileHistorygetBuildTypeConfigHistory(SBuildType buildType)FileHistorygetBuildTypeTemplateConfigHistory(String templateId)FileHistorygetBuildTypeTemplateConfigHistory(BuildTypeTemplate template)FileHistorygetPluginSettingsHistory(String projectId)FileHistorygetPluginSettingsHistory(SProject project)FileHistorygetProjectConfigHistory(String projectId)FileHistorygetProjectConfigHistory(SProject project)FileHistorygetVcsRootConfigHistory(long vcsRootId)FileHistorygetVcsRootConfigHistory(SVcsRoot vcsRoot)
-
-
-
Method Detail
-
getAuthConfigHistory
@NotNull FileHistory getAuthConfigHistory() throws IOException
- Throws:
IOException
-
getProjectConfigHistory
@NotNull FileHistory getProjectConfigHistory(@NotNull SProject project) throws IOException
- Throws:
IOException
-
getProjectConfigHistory
@NotNull FileHistory getProjectConfigHistory(@NotNull String projectId) throws IOException
- Throws:
IOException
-
getPluginSettingsHistory
@NotNull FileHistory getPluginSettingsHistory(@NotNull SProject project) throws IOException
- Throws:
IOException
-
getPluginSettingsHistory
@NotNull FileHistory getPluginSettingsHistory(@NotNull String projectId) throws IOException
- Throws:
IOException
-
getBuildTypeConfigHistory
@NotNull FileHistory getBuildTypeConfigHistory(@NotNull SBuildType buildType) throws IOException
- Throws:
IOException
-
getBuildTypeConfigHistory
@NotNull FileHistory getBuildTypeConfigHistory(@NotNull String buildTypeId) throws IOException
- Throws:
IOException
-
getBuildTypeTemplateConfigHistory
@NotNull FileHistory getBuildTypeTemplateConfigHistory(@NotNull BuildTypeTemplate template) throws IOException
- Throws:
IOException
-
getBuildTypeTemplateConfigHistory
@NotNull FileHistory getBuildTypeTemplateConfigHistory(@NotNull String templateId) throws IOException
- Throws:
IOException
-
getVcsRootConfigHistory
@NotNull FileHistory getVcsRootConfigHistory(@NotNull SVcsRoot vcsRoot) throws IOException
- Throws:
IOException
-
getVcsRootConfigHistory
@NotNull FileHistory getVcsRootConfigHistory(long vcsRootId) throws IOException
- Throws:
IOException
-
-