Class BuildPromotionAdapter
- java.lang.Object
-
- jetbrains.buildServer.serverSide.impl.BuildPromotionAdapter
-
- All Implemented Interfaces:
EventListener,BuildPromotionListener
public abstract class BuildPromotionAdapter extends Object implements BuildPromotionListener
-
-
Constructor Summary
Constructors Constructor Description BuildPromotionAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidbuildPromotionChangesDetached(BuildPromotion buildPromotion)Called when build promotion changes are detached, i.e.voidbuildPromotionDeleted(BuildPromotion buildPromotion)Called when build promotion was deleted (not by cleanup)
-
-
-
Method Detail
-
buildPromotionDeleted
public void buildPromotionDeleted(@NotNull BuildPromotion buildPromotion)Description copied from interface:BuildPromotionListenerCalled when build promotion was deleted (not by cleanup)- Specified by:
buildPromotionDeletedin interfaceBuildPromotionListener- Parameters:
buildPromotion- build promotion
-
buildPromotionChangesDetached
public void buildPromotionChangesDetached(@NotNull BuildPromotion buildPromotion)Description copied from interface:BuildPromotionListenerCalled when build promotion changes are detached, i.e. buildPromotion.isChangesDetached() starts to return true.- Specified by:
buildPromotionChangesDetachedin interfaceBuildPromotionListener- Parameters:
buildPromotion- promotion with detached changes
-
-