• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2019 The Grafeas Authors. All rights reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     https://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 // Generated by the protocol buffer compiler.  DO NOT EDIT!
18 // source: grafeas/v1/provenance.proto
19 
20 package io.grafeas.v1;
21 
22 public interface FileHashesOrBuilder
23     extends
24     // @@protoc_insertion_point(interface_extends:grafeas.v1.FileHashes)
25     com.google.protobuf.MessageOrBuilder {
26 
27   /**
28    *
29    *
30    * <pre>
31    * Required. Collection of file hashes.
32    * </pre>
33    *
34    * <code>repeated .grafeas.v1.Hash file_hash = 1;</code>
35    */
getFileHashList()36   java.util.List<io.grafeas.v1.Hash> getFileHashList();
37   /**
38    *
39    *
40    * <pre>
41    * Required. Collection of file hashes.
42    * </pre>
43    *
44    * <code>repeated .grafeas.v1.Hash file_hash = 1;</code>
45    */
getFileHash(int index)46   io.grafeas.v1.Hash getFileHash(int index);
47   /**
48    *
49    *
50    * <pre>
51    * Required. Collection of file hashes.
52    * </pre>
53    *
54    * <code>repeated .grafeas.v1.Hash file_hash = 1;</code>
55    */
getFileHashCount()56   int getFileHashCount();
57   /**
58    *
59    *
60    * <pre>
61    * Required. Collection of file hashes.
62    * </pre>
63    *
64    * <code>repeated .grafeas.v1.Hash file_hash = 1;</code>
65    */
getFileHashOrBuilderList()66   java.util.List<? extends io.grafeas.v1.HashOrBuilder> getFileHashOrBuilderList();
67   /**
68    *
69    *
70    * <pre>
71    * Required. Collection of file hashes.
72    * </pre>
73    *
74    * <code>repeated .grafeas.v1.Hash file_hash = 1;</code>
75    */
getFileHashOrBuilder(int index)76   io.grafeas.v1.HashOrBuilder getFileHashOrBuilder(int index);
77 }
78