Package jetbrains.buildServer.agent
Interface BundledToolsRegistry
-
- All Known Implementing Classes:
BundledToolsRegistryImpl,PluginAwareBundledToolsRegistry
public interface BundledToolsRegistryProvides information about bundled tools on the build agent.- Since:
- 6.5
- Author:
- Eugene Petrenko (eugene.petrenko@gmail.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BundledToolfindTool(String name)voidregisterTool(String toolName, BundledTool tool)Register tool with a given namevoidunregisterTool(String toolId)
-
-
-
Method Detail
-
findTool
@Nullable BundledTool findTool(@NotNull String name)
- Parameters:
name- tool name- Returns:
- tool descriptor if found
- Since:
- 6.5
-
registerTool
void registerTool(@NotNull String toolName, @NotNull BundledTool tool)Register tool with a given name- Parameters:
toolName- tool nametool- tool descriptor- Since:
- 10.0
-
unregisterTool
void unregisterTool(@NotNull String toolId)
-
-