Class BuildResultCondition
java.lang.Object
hudson.model.AbstractDescribableImpl<Condition>
pl.damianszczepanik.jenkins.buildhistorymanager.model.conditions.Condition
pl.damianszczepanik.jenkins.buildhistorymanager.model.conditions.BuildResultCondition
- All Implemented Interfaces:
- Describable<Condition>
Matches builds that have expected build results.
- Author:
- Damian Szczepanik (damianszczepanik@github)
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbooleanbooleanbooleanbooleanbooleanbooleanmatches(Run<?, ?> run, RuleConfiguration configuration) Decides if the build matches given criteria to be updated or not.voidsetMatchAborted(boolean matchAborted) voidsetMatchFailure(boolean matchFailure) voidsetMatchNotBuilt(boolean matchNotBuilt) voidsetMatchSuccess(boolean matchSuccess) voidsetMatchUnstable(boolean matchUnstable) Methods inherited from class hudson.model.AbstractDescribableImplgetDescriptor
- 
Constructor Details- 
BuildResultCondition@DataBoundConstructor public BuildResultCondition()
 
- 
- 
Method Details- 
getMatchSuccesspublic boolean getMatchSuccess()
- 
setMatchSuccess@DataBoundSetter public void setMatchSuccess(boolean matchSuccess) 
- 
getMatchUnstablepublic boolean getMatchUnstable()
- 
setMatchUnstable@DataBoundSetter public void setMatchUnstable(boolean matchUnstable) 
- 
getMatchFailurepublic boolean getMatchFailure()
- 
setMatchFailure@DataBoundSetter public void setMatchFailure(boolean matchFailure) 
- 
getMatchAbortedpublic boolean getMatchAborted()
- 
setMatchAborted@DataBoundSetter public void setMatchAborted(boolean matchAborted) 
- 
getMatchNotBuiltpublic boolean getMatchNotBuilt()
- 
setMatchNotBuilt@DataBoundSetter public void setMatchNotBuilt(boolean matchNotBuilt) 
- 
matchesDescription copied from class:ConditionDecides if the build matches given criteria to be updated or not.
 
-