Interface BuildTriggerDescriptor
-
- All Superinterfaces:
ParametersDescriptor
- All Known Implementing Classes:
BuildTriggerDescriptorImpl
public interface BuildTriggerDescriptor extends ParametersDescriptor
Contains build trigger settings- Since:
- 5.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description BuildCustomizationSettingsgetBuildCustomizationSettings()Returns build customizations that should be applied to the builds triggered by this trigger.BuildTriggerServicegetBuildTriggerService()Map<String,String>getProperties()Returns trigger properties mapStringgetSignature()Deprecated.since 7.0 same asParametersDescriptor.getId()StringgetTriggerName()Return name of the trigger to which these settings correspond-
Methods inherited from interface jetbrains.buildServer.serverSide.ParametersDescriptor
getId, getParameters, getType
-
-
-
-
Method Detail
-
getTriggerName
@NotNull String getTriggerName()
Return name of the trigger to which these settings correspond- Returns:
- name of the trigger (same as
ParametersDescriptor.getType())
-
getProperties
@NotNull Map<String,String> getProperties()
Returns trigger properties map- Returns:
- trigger properties map (same as
ParametersDescriptor.getParameters())
-
getSignature
@Deprecated @NotNull String getSignature()
Deprecated.since 7.0 same asParametersDescriptor.getId()Returns signature of the trigger settings. Triggers are considered equal if their signatures are equal.- Returns:
- see above
-
getBuildTriggerService
@NotNull BuildTriggerService getBuildTriggerService()
- Returns:
- build trigger service corresponding to this trigger descriptor
-
getBuildCustomizationSettings
@NotNull BuildCustomizationSettings getBuildCustomizationSettings()
Returns build customizations that should be applied to the builds triggered by this trigger.- Since:
- 2021.1
-
-