Class ToolEventsListenerAdapter
- java.lang.Object
-
- jetbrains.buildServer.tools.installed.ToolEventsListenerAdapter
-
- All Implemented Interfaces:
EventListener,ToolEventsListener
- Direct Known Subclasses:
BundledToolVersionsImpl,DefaultToolVersionsImpl,UpdatingAgentInfoOnToolInstalledListener
public class ToolEventsListenerAdapter extends Object implements ToolEventsListener
- Since:
- 2024.07
-
-
Constructor Summary
Constructors Constructor Description ToolEventsListenerAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidtoolInstallationFailed(ToolInstallationError error)Called when the tool installation is interrupted because of some errorvoidtoolInstallationScheduled(ToolVersion tool)Called after performing some basic validation on the server to ensure that the tool can be installed and before the actual installation is started on the servervoidtoolInstalled(InstalledToolVersion tool)Called after the tool installation is completed on the servervoidtoolRemoved(String toolId)Called after the tool is removed on the servervoidtoolUpdated(InstalledToolVersion tool)Called after the tool content is updated on the server.
-
-
-
Method Detail
-
toolInstallationScheduled
public void toolInstallationScheduled(@NotNull ToolVersion tool)Description copied from interface:ToolEventsListenerCalled after performing some basic validation on the server to ensure that the tool can be installed and before the actual installation is started on the server- Specified by:
toolInstallationScheduledin interfaceToolEventsListener
-
toolInstalled
public void toolInstalled(@NotNull InstalledToolVersion tool)Description copied from interface:ToolEventsListenerCalled after the tool installation is completed on the server- Specified by:
toolInstalledin interfaceToolEventsListener
-
toolUpdated
public void toolUpdated(@NotNull InstalledToolVersion tool)Description copied from interface:ToolEventsListenerCalled after the tool content is updated on the server. The content is updated when the original tool package is changed- Specified by:
toolUpdatedin interfaceToolEventsListener
-
toolRemoved
public void toolRemoved(@NotNull String toolId)Description copied from interface:ToolEventsListenerCalled after the tool is removed on the server- Specified by:
toolRemovedin interfaceToolEventsListener
-
toolInstallationFailed
public void toolInstallationFailed(@NotNull ToolInstallationError error)Description copied from interface:ToolEventsListenerCalled when the tool installation is interrupted because of some error- Specified by:
toolInstallationFailedin interfaceToolEventsListener
-
-