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/grafeas.proto 19 20 package io.grafeas.v1; 21 22 public interface BatchCreateNotesResponseOrBuilder 23 extends 24 // @@protoc_insertion_point(interface_extends:grafeas.v1.BatchCreateNotesResponse) 25 com.google.protobuf.MessageOrBuilder { 26 27 /** 28 * 29 * 30 * <pre> 31 * The notes that were created. 32 * </pre> 33 * 34 * <code>repeated .grafeas.v1.Note notes = 1;</code> 35 */ getNotesList()36 java.util.List<io.grafeas.v1.Note> getNotesList(); 37 /** 38 * 39 * 40 * <pre> 41 * The notes that were created. 42 * </pre> 43 * 44 * <code>repeated .grafeas.v1.Note notes = 1;</code> 45 */ getNotes(int index)46 io.grafeas.v1.Note getNotes(int index); 47 /** 48 * 49 * 50 * <pre> 51 * The notes that were created. 52 * </pre> 53 * 54 * <code>repeated .grafeas.v1.Note notes = 1;</code> 55 */ getNotesCount()56 int getNotesCount(); 57 /** 58 * 59 * 60 * <pre> 61 * The notes that were created. 62 * </pre> 63 * 64 * <code>repeated .grafeas.v1.Note notes = 1;</code> 65 */ getNotesOrBuilderList()66 java.util.List<? extends io.grafeas.v1.NoteOrBuilder> getNotesOrBuilderList(); 67 /** 68 * 69 * 70 * <pre> 71 * The notes that were created. 72 * </pre> 73 * 74 * <code>repeated .grafeas.v1.Note notes = 1;</code> 75 */ getNotesOrBuilder(int index)76 io.grafeas.v1.NoteOrBuilder getNotesOrBuilder(int index); 77 } 78