Package jetbrains.buildServer.serverSide
Interface ProjectVcsRootsEx
-
- All Superinterfaces:
ProjectVcsRoots
- All Known Subinterfaces:
ProjectManagerEx
- All Known Implementing Classes:
ProjectManagerImpl,SecuredProjectManager
public interface ProjectVcsRootsEx extends ProjectVcsRoots
Created 22.08.13 10:44- Author:
- Eugene Petrenko (eugene.petrenko@jetbrains.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SVcsRootExfindVcsRootByExternalId(String externalId)Finds VCS root by external idSVcsRootExfindVcsRootById(long id)Finds VCS root by idSVcsRootExfindVcsRootByName(String name)-
Methods inherited from interface jetbrains.buildServer.serverSide.ProjectVcsRoots
findVcsRootByConfigId, findVcsRootsByIds, getAllVcsRoots
-
-
-
-
Method Detail
-
findVcsRootById
@Nullable SVcsRootEx findVcsRootById(long id)
Description copied from interface:ProjectVcsRootsFinds VCS root by id- Specified by:
findVcsRootByIdin interfaceProjectVcsRoots- Parameters:
id- vcs root id- Returns:
- found VCS root or null
-
findVcsRootByExternalId
@Nullable SVcsRootEx findVcsRootByExternalId(@NotNull String externalId)
Description copied from interface:ProjectVcsRootsFinds VCS root by external id- Specified by:
findVcsRootByExternalIdin interfaceProjectVcsRoots- Parameters:
externalId- external vcs root id- Returns:
- found VCS root or null
-
findVcsRootByName
@Nullable SVcsRootEx findVcsRootByName(@NotNull String name)
-
-