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 void
buildPromotionChangesDetached(BuildPromotion buildPromotion)
Called when build promotion changes are detached, i.e.void
buildPromotionDeleted(BuildPromotion buildPromotion)
Called when build promotion was deleted (not by cleanup)
-
-
-
Method Detail
-
buildPromotionDeleted
public void buildPromotionDeleted(@NotNull BuildPromotion buildPromotion)
Description copied from interface:BuildPromotionListener
Called when build promotion was deleted (not by cleanup)- Specified by:
buildPromotionDeleted
in interfaceBuildPromotionListener
- Parameters:
buildPromotion
- build promotion
-
buildPromotionChangesDetached
public void buildPromotionChangesDetached(@NotNull BuildPromotion buildPromotion)
Description copied from interface:BuildPromotionListener
Called when build promotion changes are detached, i.e. buildPromotion.isChangesDetached() starts to return true.- Specified by:
buildPromotionChangesDetached
in interfaceBuildPromotionListener
- Parameters:
buildPromotion
- promotion with detached changes
-
-