Interface XssOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Xss,Xss.Builder
public interface XssOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetErrorMessage()An error message generated by a javascript breakage.com.google.protobuf.ByteStringgetErrorMessageBytes()An error message generated by a javascript breakage.StringgetStackTraces(int index)Stack traces leading to the point where the XSS occurred.com.google.protobuf.ByteStringgetStackTracesBytes(int index)Stack traces leading to the point where the XSS occurred.intgetStackTracesCount()Stack traces leading to the point where the XSS occurred.List<String>getStackTracesList()Stack traces leading to the point where the XSS occurred.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getStackTracesList
List<String> getStackTracesList()
Stack traces leading to the point where the XSS occurred.
repeated string stack_traces = 1;- Returns:
- A list containing the stackTraces.
-
getStackTracesCount
int getStackTracesCount()
Stack traces leading to the point where the XSS occurred.
repeated string stack_traces = 1;- Returns:
- The count of stackTraces.
-
getStackTraces
String getStackTraces(int index)
Stack traces leading to the point where the XSS occurred.
repeated string stack_traces = 1;- Parameters:
index- The index of the element to return.- Returns:
- The stackTraces at the given index.
-
getStackTracesBytes
com.google.protobuf.ByteString getStackTracesBytes(int index)
Stack traces leading to the point where the XSS occurred.
repeated string stack_traces = 1;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the stackTraces at the given index.
-
getErrorMessage
String getErrorMessage()
An error message generated by a javascript breakage.
string error_message = 2;- Returns:
- The errorMessage.
-
getErrorMessageBytes
com.google.protobuf.ByteString getErrorMessageBytes()
An error message generated by a javascript breakage.
string error_message = 2;- Returns:
- The bytes for errorMessage.
-
-