Package jetbrains.buildServer.serverSide
Interface ConfigActionsServerListener
-
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
CompositeConfigChangesCommitter,ConfigActionsServerAdapter,ConfigChangesCommitterImpl,ConfigChangesListener,DependencyParameterReferencesProcessor,DependencyTriggersTriggerSettingsMapper,GlobalConfigChangesCommitterImpl,ParentProjectOrderPersister,ProjectExtIdChangeListener,TriggerRulesListener,VcsLabelingBuildFeatureSettingsMapper,VersionedSettingsRootPersistedListener
public interface ConfigActionsServerListener extends EventListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidafterProjectMove(ConfigAction cause, SProject project, SProject oldParent)voidbuildTypeExternalIdChanged(ConfigAction cause, SBuildType buildType, String oldExternalId, String newExternalId)voidbuildTypeTemplateExternalIdChanged(ConfigAction cause, BuildTypeTemplate buildTypeTemplate, String oldExternalId, String newExternalId)voidprojectExternalIdChanged(ConfigAction cause, SProject project, String oldExtId, String newId)voidvcsRootExternalIdChanged(ConfigAction cause, SVcsRoot vcsRoot, String oldExternalId, String newExternalId)voidvcsRootPersisted(ConfigAction cause, SVcsRoot vcsRoot)
-
-
-
Method Detail
-
vcsRootExternalIdChanged
void vcsRootExternalIdChanged(@NotNull ConfigAction cause, @NotNull SVcsRoot vcsRoot, @NotNull String oldExternalId, @NotNull String newExternalId)
-
buildTypeTemplateExternalIdChanged
void buildTypeTemplateExternalIdChanged(@NotNull ConfigAction cause, @NotNull BuildTypeTemplate buildTypeTemplate, @NotNull String oldExternalId, @NotNull String newExternalId)
-
buildTypeExternalIdChanged
void buildTypeExternalIdChanged(@NotNull ConfigAction cause, @NotNull SBuildType buildType, @NotNull String oldExternalId, @NotNull String newExternalId)
-
projectExternalIdChanged
void projectExternalIdChanged(@NotNull ConfigAction cause, @NotNull SProject project, @NotNull String oldExtId, @NotNull String newId)
-
afterProjectMove
void afterProjectMove(@NotNull ConfigAction cause, @NotNull SProject project, @NotNull SProject oldParent)
-
vcsRootPersisted
void vcsRootPersisted(@NotNull ConfigAction cause, @NotNull SVcsRoot vcsRoot)
-
-