LCOV - code coverage report
Current view: top level - extensions/api/projects - ProjectInput.java (source / functions) Hit Total Coverage
Test: _coverage_report.dat Lines: 1 1 100.0 %
Date: 2022-11-19 15:00:39 Functions: 1 1 100.0 %

          Line data    Source code
       1             : // Copyright (C) 2014 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.api.projects;
      16             : 
      17             : import com.google.gerrit.extensions.client.InheritableBoolean;
      18             : import com.google.gerrit.extensions.client.SubmitType;
      19             : import java.util.List;
      20             : import java.util.Map;
      21             : 
      22         143 : public class ProjectInput {
      23             :   public String name;
      24             :   public String parent;
      25             :   public String description;
      26             :   public boolean permissionsOnly;
      27             :   public boolean createEmptyCommit;
      28             :   public SubmitType submitType;
      29             :   public List<String> branches;
      30             :   public List<String> owners;
      31             :   public InheritableBoolean useContributorAgreements;
      32             :   public InheritableBoolean useSignedOffBy;
      33             :   public InheritableBoolean useContentMerge;
      34             :   public InheritableBoolean requireChangeId;
      35             :   public InheritableBoolean createNewChangeForAllNotInTarget;
      36             :   public InheritableBoolean rejectEmptyCommit;
      37             :   public InheritableBoolean enableSignedPush;
      38             :   public InheritableBoolean requireSignedPush;
      39             :   public String maxObjectSizeLimit;
      40             :   public Map<String, Map<String, ConfigValue>> pluginConfigValues;
      41             : }

Generated by: LCOV version 1.16+git.20220603.dfeb750