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/discovery.proto 19 20 package io.grafeas.v1; 21 22 public interface DiscoveryNoteOrBuilder 23 extends 24 // @@protoc_insertion_point(interface_extends:grafeas.v1.DiscoveryNote) 25 com.google.protobuf.MessageOrBuilder { 26 27 /** 28 * 29 * 30 * <pre> 31 * Required. Immutable. The kind of analysis that is handled by this 32 * discovery. 33 * </pre> 34 * 35 * <code>.grafeas.v1.NoteKind analysis_kind = 1;</code> 36 * 37 * @return The enum numeric value on the wire for analysisKind. 38 */ getAnalysisKindValue()39 int getAnalysisKindValue(); 40 /** 41 * 42 * 43 * <pre> 44 * Required. Immutable. The kind of analysis that is handled by this 45 * discovery. 46 * </pre> 47 * 48 * <code>.grafeas.v1.NoteKind analysis_kind = 1;</code> 49 * 50 * @return The analysisKind. 51 */ getAnalysisKind()52 io.grafeas.v1.NoteKind getAnalysisKind(); 53 } 54