Class SubmitRequirementInfo
- java.lang.Object
-
- com.google.gerrit.extensions.common.SubmitRequirementInfo
-
public class SubmitRequirementInfo extends Object
-
-
Field Summary
Fields Modifier and Type Field Description boolean
allowOverrideInChildProjects
Boolean indicating if this submit requirement can be overridden in child projects.String
applicabilityExpression
Expression string to be evaluated on a change.String
description
Description of the submit requirement.String
name
Name of the submit requirement.String
overrideExpression
Expression string to be evaluated on a change.String
submittabilityExpression
Expression string to be evaluated on a change.
-
Constructor Summary
Constructors Constructor Description SubmitRequirementInfo()
-
-
-
Field Detail
-
name
public String name
Name of the submit requirement.
-
description
public String description
Description of the submit requirement.
-
applicabilityExpression
public String applicabilityExpression
Expression string to be evaluated on a change. Decides if this submit requirement is applicable on the given change.
-
submittabilityExpression
public String submittabilityExpression
Expression string to be evaluated on a change. When evaluated to true, this submit requirement becomes fulfilled for this change.
-
overrideExpression
public String overrideExpression
Expression string to be evaluated on a change. When evaluated to true, this submit requirement becomes fulfilled for this change regardless of the evaluation of thesubmittabilityExpression
.
-
allowOverrideInChildProjects
public boolean allowOverrideInChildProjects
Boolean indicating if this submit requirement can be overridden in child projects.
-
-