Interface ListFindingsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListFindingsResponse,ListFindingsResponse.Builder
public interface ListFindingsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FindinggetFindings(int index)The list of Findings returned.intgetFindingsCount()The list of Findings returned.List<Finding>getFindingsList()The list of Findings returned.FindingOrBuildergetFindingsOrBuilder(int index)The list of Findings returned.List<? extends FindingOrBuilder>getFindingsOrBuilderList()The list of Findings returned.StringgetNextPageToken()Token to retrieve the next page of results, or empty if there are no more results in the list.com.google.protobuf.ByteStringgetNextPageTokenBytes()Token to retrieve the next page of results, or empty if there are no more results in the list.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFindingsList
List<Finding> getFindingsList()
The list of Findings returned.
repeated .google.cloud.websecurityscanner.v1.Finding findings = 1;
-
getFindings
Finding getFindings(int index)
The list of Findings returned.
repeated .google.cloud.websecurityscanner.v1.Finding findings = 1;
-
getFindingsCount
int getFindingsCount()
The list of Findings returned.
repeated .google.cloud.websecurityscanner.v1.Finding findings = 1;
-
getFindingsOrBuilderList
List<? extends FindingOrBuilder> getFindingsOrBuilderList()
The list of Findings returned.
repeated .google.cloud.websecurityscanner.v1.Finding findings = 1;
-
getFindingsOrBuilder
FindingOrBuilder getFindingsOrBuilder(int index)
The list of Findings returned.
repeated .google.cloud.websecurityscanner.v1.Finding findings = 1;
-
getNextPageToken
String getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-