Interface FormOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Form,Form.Builder
public interface FormOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetActionUri()! The URI where to send the form when it's submitted.com.google.protobuf.ByteStringgetActionUriBytes()! The URI where to send the form when it's submitted.StringgetFields(int index)! The names of form fields related to the vulnerability.com.google.protobuf.ByteStringgetFieldsBytes(int index)! The names of form fields related to the vulnerability.intgetFieldsCount()! The names of form fields related to the vulnerability.List<String>getFieldsList()! The names of form fields related to the vulnerability.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getActionUri
String getActionUri()
! The URI where to send the form when it's submitted.
string action_uri = 1;- Returns:
- The actionUri.
-
getActionUriBytes
com.google.protobuf.ByteString getActionUriBytes()
! The URI where to send the form when it's submitted.
string action_uri = 1;- Returns:
- The bytes for actionUri.
-
getFieldsList
List<String> getFieldsList()
! The names of form fields related to the vulnerability.
repeated string fields = 2;- Returns:
- A list containing the fields.
-
getFieldsCount
int getFieldsCount()
! The names of form fields related to the vulnerability.
repeated string fields = 2;- Returns:
- The count of fields.
-
getFields
String getFields(int index)
! The names of form fields related to the vulnerability.
repeated string fields = 2;- Parameters:
index- The index of the element to return.- Returns:
- The fields at the given index.
-
getFieldsBytes
com.google.protobuf.ByteString getFieldsBytes(int index)
! The names of form fields related to the vulnerability.
repeated string fields = 2;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the fields at the given index.
-
-