Line data Source code
1 : // Copyright (C) 2021 The Android Open Source Project 2 : // 3 : // Licensed under the Apache License, Version 2.0 (the "License"); 4 : // you may not use this file except in compliance with the License. 5 : // You may obtain a copy of the License at 6 : // 7 : // http://www.apache.org/licenses/LICENSE-2.0 8 : // 9 : // Unless required by applicable law or agreed to in writing, software 10 : // distributed under the License is distributed on an "AS IS" BASIS, 11 : // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 : // See the License for the specific language governing permissions and 13 : // limitations under the License. 14 : 15 : package com.google.gerrit.extensions.common; 16 : 17 : /** API Input describing a submit requirement entity. */ 18 4 : public class SubmitRequirementInput { 19 : /** Submit requirement name. */ 20 : public String name; 21 : 22 : /** Submit requirement description. */ 23 : public String description; 24 : 25 : /** 26 : * Query expression that can be evaluated on any change. If evaluated to true on a change, the 27 : * submit requirement is then applicable on this change. 28 : */ 29 : public String applicabilityExpression; 30 : 31 : /** 32 : * Query expression that can be evaluated on any change. If evaluated to true on a change, the 33 : * submit requirement is fulfilled and not blocking change submission. 34 : */ 35 : public String submittabilityExpression; 36 : 37 : /** 38 : * Query expression that can be evaluated on any change. If evaluated to true on a change, the 39 : * submit requirement is overridden and not blocking change submission. 40 : */ 41 : public String overrideExpression; 42 : 43 : /** Whether this submit requirement can be overridden in child projects. */ 44 : public Boolean allowOverrideInChildProjects; 45 : }