Package jetbrains.buildServer.serverSide
Class ConfigActionsServerAdapter
- java.lang.Object
-
- jetbrains.buildServer.serverSide.ConfigActionsServerAdapter
-
- All Implemented Interfaces:
EventListener
,ConfigActionsServerListener
- Direct Known Subclasses:
ConfigChangesListener
,DependencyParameterReferencesProcessor
,DependencyTriggersTriggerSettingsMapper
,ParentProjectOrderPersister
,ProjectExtIdChangeListener
,TriggerRulesListener
,VcsLabelingBuildFeatureSettingsMapper
,VersionedSettingsRootPersistedListener
public abstract class ConfigActionsServerAdapter extends Object implements ConfigActionsServerListener
-
-
Constructor Summary
Constructors Constructor Description ConfigActionsServerAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
afterProjectMove(ConfigAction cause, SProject project, SProject oldParent)
void
buildTypeExternalIdChanged(ConfigAction cause, SBuildType buildType, String oldExternalId, String newExternalId)
void
buildTypeTemplateExternalIdChanged(ConfigAction cause, BuildTypeTemplate buildTypeTemplate, String oldExternalId, String newExternalId)
void
projectExternalIdChanged(ConfigAction cause, SProject project, String oldExtId, String newId)
void
vcsRootExternalIdChanged(ConfigAction cause, SVcsRoot vcsRoot, String oldExternalId, String newExternalId)
void
vcsRootPersisted(ConfigAction cause, SVcsRoot vcsRoot)
-
-
-
Method Detail
-
vcsRootExternalIdChanged
public void vcsRootExternalIdChanged(@NotNull ConfigAction cause, @NotNull SVcsRoot vcsRoot, @NotNull String oldExternalId, @NotNull String newExternalId)
- Specified by:
vcsRootExternalIdChanged
in interfaceConfigActionsServerListener
-
buildTypeTemplateExternalIdChanged
public void buildTypeTemplateExternalIdChanged(@NotNull ConfigAction cause, @NotNull BuildTypeTemplate buildTypeTemplate, @NotNull String oldExternalId, @NotNull String newExternalId)
- Specified by:
buildTypeTemplateExternalIdChanged
in interfaceConfigActionsServerListener
-
buildTypeExternalIdChanged
public void buildTypeExternalIdChanged(@NotNull ConfigAction cause, @NotNull SBuildType buildType, @NotNull String oldExternalId, @NotNull String newExternalId)
- Specified by:
buildTypeExternalIdChanged
in interfaceConfigActionsServerListener
-
projectExternalIdChanged
public void projectExternalIdChanged(@NotNull ConfigAction cause, @NotNull SProject project, @NotNull String oldExtId, @NotNull String newId)
- Specified by:
projectExternalIdChanged
in interfaceConfigActionsServerListener
-
afterProjectMove
public void afterProjectMove(@NotNull ConfigAction cause, @NotNull SProject project, @NotNull SProject oldParent)
- Specified by:
afterProjectMove
in interfaceConfigActionsServerListener
-
vcsRootPersisted
public void vcsRootPersisted(@NotNull ConfigAction cause, @NotNull SVcsRoot vcsRoot)
- Specified by:
vcsRootPersisted
in interfaceConfigActionsServerListener
-
-