Interface AgentVcsRegistryEx
-
- All Superinterfaces:
AgentVcsRegistry
- All Known Implementing Classes:
AgentVcsRegistryImpl2
public interface AgentVcsRegistryEx extends AgentVcsRegistry
- Since:
- 4.5
- Author:
- Eugene Petrenko
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AgentVcsSupportContext
findVcsSupport(String name)
Searches for vcs plugin implementationCollection<String>
getVcsSupportNames()
Names of all registered vcs plugins on agent side.-
Methods inherited from interface jetbrains.buildServer.agent.vcs.AgentVcsRegistry
registerVcsSupport
-
-
-
-
Method Detail
-
getVcsSupportNames
@NotNull Collection<String> getVcsSupportNames()
Names of all registered vcs plugins on agent side.- Returns:
- see above
-
findVcsSupport
@NotNull AgentVcsSupportContext findVcsSupport(@NotNull String name) throws VcsException
Searches for vcs plugin implementation- Parameters:
name
-- Returns:
- Throws:
VcsException
- if plugin was not found
-
-