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 FileHistory
getAuthConfigHistory()
FileHistory
getBuildTypeConfigHistory(String buildTypeId)
FileHistory
getBuildTypeConfigHistory(SBuildType buildType)
FileHistory
getBuildTypeTemplateConfigHistory(String templateId)
FileHistory
getBuildTypeTemplateConfigHistory(BuildTypeTemplate template)
FileHistory
getPluginSettingsHistory(String projectId)
FileHistory
getPluginSettingsHistory(SProject project)
FileHistory
getProjectConfigHistory(String projectId)
FileHistory
getProjectConfigHistory(SProject project)
FileHistory
getVcsRootConfigHistory(long vcsRootId)
FileHistory
getVcsRootConfigHistory(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
-
-