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 SVcsRootEx
findVcsRootByExternalId(String externalId)
Finds VCS root by external idSVcsRootEx
findVcsRootById(long id)
Finds VCS root by idSVcsRootEx
findVcsRootByName(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:ProjectVcsRoots
Finds VCS root by id- Specified by:
findVcsRootById
in interfaceProjectVcsRoots
- Parameters:
id
- vcs root id- Returns:
- found VCS root or null
-
findVcsRootByExternalId
@Nullable SVcsRootEx findVcsRootByExternalId(@NotNull String externalId)
Description copied from interface:ProjectVcsRoots
Finds VCS root by external id- Specified by:
findVcsRootByExternalId
in interfaceProjectVcsRoots
- Parameters:
externalId
- external vcs root id- Returns:
- found VCS root or null
-
findVcsRootByName
@Nullable SVcsRootEx findVcsRootByName(@NotNull String name)
-
-