Package jetbrains.buildServer.serverSide
Interface VersionedSettingsRegistryEx
-
- All Superinterfaces:
VersionedSettingsRegistry
- All Known Implementing Classes:
VersionedSettingsRegistryImpl
public interface VersionedSettingsRegistryEx extends VersionedSettingsRegistry
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<String>
getVersionedDirs()
List<String>
getVersionedFiles()
boolean
isVersionedPath(String pathInProjectDir)
Collection<String>
listVersionedFiles(SProject project)
Returns for specified project a collection of versioned file paths relative to project's config dir-
Methods inherited from interface jetbrains.buildServer.serverSide.VersionedSettingsRegistry
registerDir, registerFile
-
-
-
-
Method Detail
-
listVersionedFiles
@NotNull Collection<String> listVersionedFiles(@NotNull SProject project)
Returns for specified project a collection of versioned file paths relative to project's config dir- Parameters:
project
- project of interest- Returns:
- see above
-
isVersionedPath
boolean isVersionedPath(@NotNull String pathInProjectDir)
- Parameters:
pathInProjectDir
- relative path to a file or directory in the project configuration dir- Returns:
- true if this path is versioned, i.e. should be stored under the VCS
-
-