Package com.hack23.maven.plugin.model
Class QualityGateValue
- java.lang.Object
-
- com.hack23.maven.plugin.model.QualityGateValue
-
public final class QualityGateValue extends Object
The Class QualityGateValue.
-
-
Constructor Summary
Constructors Constructor Description QualityGateValue()Instantiates a new quality gate value.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object object)List<Conditions>getConditions()Gets the conditions.StringgetIgnoredConditions()Gets the ignored conditions.StringgetLevel()Gets the level.inthashCode()voidsetConditions(List<Conditions> conditions)Sets the conditions.voidsetIgnoredConditions(String ignoredConditions)Sets the ignored conditions.voidsetLevel(String level)Sets the level.StringtoString()
-
-
-
Method Detail
-
getIgnoredConditions
public String getIgnoredConditions()
Gets the ignored conditions.- Returns:
- the ignored conditions
-
setIgnoredConditions
public void setIgnoredConditions(String ignoredConditions)
Sets the ignored conditions.- Parameters:
ignoredConditions- the new ignored conditions
-
getLevel
public String getLevel()
Gets the level.- Returns:
- the level
-
setLevel
public void setLevel(String level)
Sets the level.- Parameters:
level- the new level
-
getConditions
public List<Conditions> getConditions()
Gets the conditions.- Returns:
- the conditions
-
setConditions
public void setConditions(List<Conditions> conditions)
Sets the conditions.- Parameters:
conditions- the new conditions
-
-