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 Finding
getFindings(int index)
The list of Findings returned.int
getFindingsCount()
The list of Findings returned.List<Finding>
getFindingsList()
The list of Findings returned.FindingOrBuilder
getFindingsOrBuilder(int index)
The list of Findings returned.List<? extends FindingOrBuilder>
getFindingsOrBuilderList()
The list of Findings returned.String
getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results in the list.com.google.protobuf.ByteString
getNextPageTokenBytes()
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.v1alpha.Finding findings = 1;
-
getFindings
Finding getFindings(int index)
The list of Findings returned.
repeated .google.cloud.websecurityscanner.v1alpha.Finding findings = 1;
-
getFindingsCount
int getFindingsCount()
The list of Findings returned.
repeated .google.cloud.websecurityscanner.v1alpha.Finding findings = 1;
-
getFindingsOrBuilderList
List<? extends FindingOrBuilder> getFindingsOrBuilderList()
The list of Findings returned.
repeated .google.cloud.websecurityscanner.v1alpha.Finding findings = 1;
-
getFindingsOrBuilder
FindingOrBuilder getFindingsOrBuilder(int index)
The list of Findings returned.
repeated .google.cloud.websecurityscanner.v1alpha.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.
-
-