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 boolean
equals(Object object)
List<Conditions>
getConditions()
Gets the conditions.String
getIgnoredConditions()
Gets the ignored conditions.String
getLevel()
Gets the level.int
hashCode()
void
setConditions(List<Conditions> conditions)
Sets the conditions.void
setIgnoredConditions(String ignoredConditions)
Sets the ignored conditions.void
setLevel(String level)
Sets the level.String
toString()
-
-
-
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
-
-