Class ManualBuildTriggerReason
- java.lang.Object
-
- com.atlassian.bamboo.v2.build.trigger.AbstractTriggerReason
-
- com.atlassian.bamboo.v2.build.trigger.ManualBuildTriggerReason
-
- All Implemented Interfaces:
TriggerReason,Serializable
- Direct Known Subclasses:
CustomRevisionBuildTriggerReason,RerunBuildTriggerReason
public class ManualBuildTriggerReason extends AbstractTriggerReason
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringKEYprotected com.atlassian.struts.TextProvidertextProviderstatic StringTRIGGER_MANUAL_STAGEstatic StringTRIGGER_MANUAL_USER-
Fields inherited from class com.atlassian.bamboo.v2.build.trigger.AbstractTriggerReason
PLUGIN_KEY, TRIGGER_REASON_KEY
-
-
Constructor Summary
Constructors Constructor Description ManualBuildTriggerReason()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()Gives the trigger reasonStringgetNameForSentence()Gives the trigger reason in a format that can be used in a sentence eg.StringgetStageName()StringgetUserName()voidinit(String key, @NotNull ResultsSummary resultsSummary)Initializes theTriggerReasonusing data from theResultsSummaryvoidinit(String key, Map<String,String> fields)Initializes theTriggerReasonusing data from theMapvoidsetStageName(String stageName)voidsetUserName(String userName)voidupdateCustomData(@NotNull BambooCustomDataAware customDataAware)Updates theTriggerReasongiven aBambooCustomDataAware-
Methods inherited from class com.atlassian.bamboo.v2.build.trigger.AbstractTriggerReason
getChildTriggerReason, getKey, init, toString, updateIfValueNotNull
-
-
-
-
Field Detail
-
KEY
public static final String KEY
- See Also:
- Constant Field Values
-
TRIGGER_MANUAL_USER
public static final String TRIGGER_MANUAL_USER
- See Also:
- Constant Field Values
-
TRIGGER_MANUAL_STAGE
public static final String TRIGGER_MANUAL_STAGE
- See Also:
- Constant Field Values
-
textProvider
@Inject protected transient com.atlassian.struts.TextProvider textProvider
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:TriggerReasonGives the trigger reason- Returns:
- {String} - the trigger reason
-
getNameForSentence
public String getNameForSentence()
Description copied from interface:TriggerReasonGives the trigger reason in a format that can be used in a sentence eg. "was triggered at the scheduled time of 6:34 PM"- Returns:
- {String} - the trigger reason, must be HTML escaped.
-
init
public void init(String key, Map<String,String> fields)
Description copied from interface:TriggerReasonInitializes theTriggerReasonusing data from theMap
-
init
public void init(String key, @NotNull @NotNull ResultsSummary resultsSummary)
Description copied from interface:TriggerReasonInitializes theTriggerReasonusing data from theResultsSummary
-
updateCustomData
public void updateCustomData(@NotNull @NotNull BambooCustomDataAware customDataAware)Description copied from interface:TriggerReasonUpdates theTriggerReasongiven aBambooCustomDataAware
-
getUserName
public String getUserName()
-
setUserName
public void setUserName(String userName)
-
getStageName
public String getStageName()
-
setStageName
public void setStageName(String stageName)
-
-