• 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/grafeas.proto
19 
20 package io.grafeas.v1;
21 
22 public interface ListNotesResponseOrBuilder
23     extends
24     // @@protoc_insertion_point(interface_extends:grafeas.v1.ListNotesResponse)
25     com.google.protobuf.MessageOrBuilder {
26 
27   /**
28    *
29    *
30    * <pre>
31    * The notes requested.
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 requested.
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 requested.
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 requested.
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 requested.
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   /**
79    *
80    *
81    * <pre>
82    * The next pagination token in the list response. It should be used as
83    * `page_token` for the following request. An empty value means no more
84    * results.
85    * </pre>
86    *
87    * <code>string next_page_token = 2;</code>
88    *
89    * @return The nextPageToken.
90    */
getNextPageToken()91   java.lang.String getNextPageToken();
92   /**
93    *
94    *
95    * <pre>
96    * The next pagination token in the list response. It should be used as
97    * `page_token` for the following request. An empty value means no more
98    * results.
99    * </pre>
100    *
101    * <code>string next_page_token = 2;</code>
102    *
103    * @return The bytes for nextPageToken.
104    */
getNextPageTokenBytes()105   com.google.protobuf.ByteString getNextPageTokenBytes();
106 }
107