Interface VulnerableParametersOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
VulnerableParameters
,VulnerableParameters.Builder
public interface VulnerableParametersOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getParameterNames(int index)
The vulnerable parameter names.com.google.protobuf.ByteString
getParameterNamesBytes(int index)
The vulnerable parameter names.int
getParameterNamesCount()
The vulnerable parameter names.List<String>
getParameterNamesList()
The vulnerable parameter names.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParameterNamesList
List<String> getParameterNamesList()
The vulnerable parameter names.
repeated string parameter_names = 1;
- Returns:
- A list containing the parameterNames.
-
getParameterNamesCount
int getParameterNamesCount()
The vulnerable parameter names.
repeated string parameter_names = 1;
- Returns:
- The count of parameterNames.
-
getParameterNames
String getParameterNames(int index)
The vulnerable parameter names.
repeated string parameter_names = 1;
- Parameters:
index
- The index of the element to return.- Returns:
- The parameterNames at the given index.
-
getParameterNamesBytes
com.google.protobuf.ByteString getParameterNamesBytes(int index)
The vulnerable parameter names.
repeated string parameter_names = 1;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the parameterNames at the given index.
-
-