Package org.sonar.api.ce.posttask
Interface QualityGate
-
public interface QualityGate- Since:
- 5.5
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceQualityGate.Conditionstatic classQualityGate.EvaluationStatusQuality gate condition evaluation status.static classQualityGate.OperatorQuality Gate condition operator.static classQualityGate.Status
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<QualityGate.Condition>getConditions()Conditions of the Quality Gate.java.lang.StringgetId()The unique identifier of the Quality Gate.java.lang.StringgetName()Name of the Quality Gate.QualityGate.StatusgetStatus()Status of the Quality Gate for the current project processing.
-
-
-
Method Detail
-
getId
java.lang.String getId()
The unique identifier of the Quality Gate.
-
getName
java.lang.String getName()
Name of the Quality Gate.
-
getStatus
QualityGate.Status getStatus()
Status of the Quality Gate for the current project processing.
-
getConditions
java.util.Collection<QualityGate.Condition> getConditions()
Conditions of the Quality Gate.
-
-