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

          Line data    Source code
       1             : // Copyright (C) 2017 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.api.changes.ChangeApi;
      18             : import com.google.gerrit.extensions.api.changes.CherryPickInput;
      19             : import com.google.gerrit.extensions.api.changes.IncludedInInfo;
      20             : import com.google.gerrit.extensions.common.CommitInfo;
      21             : import com.google.gerrit.extensions.common.FileInfo;
      22             : import com.google.gerrit.extensions.restapi.NotImplementedException;
      23             : import com.google.gerrit.extensions.restapi.RestApiException;
      24             : import java.util.Map;
      25             : 
      26             : public interface CommitApi {
      27             :   CommitInfo get() throws RestApiException;
      28             : 
      29             :   ChangeApi cherryPick(CherryPickInput input) throws RestApiException;
      30             : 
      31             :   IncludedInInfo includedIn() throws RestApiException;
      32             : 
      33             :   /** List files in a specific commit against the parent commit. */
      34             :   Map<String, FileInfo> files(int parentNum) throws RestApiException;
      35             : 
      36             :   /** A default implementation for source compatibility when adding new methods to the interface. */
      37           0 :   class NotImplemented implements CommitApi {
      38             :     @Override
      39             :     public CommitInfo get() throws RestApiException {
      40           0 :       throw new NotImplementedException();
      41             :     }
      42             : 
      43             :     @Override
      44             :     public ChangeApi cherryPick(CherryPickInput input) throws RestApiException {
      45           0 :       throw new NotImplementedException();
      46             :     }
      47             : 
      48             :     @Override
      49             :     public IncludedInInfo includedIn() throws RestApiException {
      50           0 :       throw new NotImplementedException();
      51             :     }
      52             : 
      53             :     @Override
      54             :     public Map<String, FileInfo> files(int parentNum) throws RestApiException {
      55           0 :       throw new NotImplementedException();
      56             :     }
      57             :   }
      58             : }

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