Interface FailedEventOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FailedEvent,FailedEvent.Builder
public interface FailedEventOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCause()The human-readable description of the cause of the failure.com.google.protobuf.ByteStringgetCauseBytes()The human-readable description of the cause of the failure.com.google.rpc.CodegetCode()The Google standard error code that best describes this failure.intgetCodeValue()The Google standard error code that best describes this failure.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCodeValue
int getCodeValue()
The Google standard error code that best describes this failure.
.google.rpc.Code code = 1;- Returns:
- The enum numeric value on the wire for code.
-
getCode
com.google.rpc.Code getCode()
The Google standard error code that best describes this failure.
.google.rpc.Code code = 1;- Returns:
- The code.
-
getCause
String getCause()
The human-readable description of the cause of the failure.
string cause = 2;- Returns:
- The cause.
-
getCauseBytes
com.google.protobuf.ByteString getCauseBytes()
The human-readable description of the cause of the failure.
string cause = 2;- Returns:
- The bytes for cause.
-
-