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 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
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)
-
-