Interface Protocol.ErrorOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
- All Known Implementing Classes:
Protocol.Error
,Protocol.Error.Builder
- Enclosing class:
- Protocol
public static interface Protocol.ErrorOrBuilder extends com.google.protobuf.MessageLiteOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getCode()
uint32 code = 1;
java.lang.String
getMessage()
string message = 2;
com.google.protobuf.ByteString
getMessageBytes()
string message = 2;
boolean
getTemporary()
bool temporary = 3;
-
-
-
Method Detail
-
getCode
int getCode()
uint32 code = 1;
- Returns:
- The code.
-
getMessage
java.lang.String getMessage()
string message = 2;
- Returns:
- The message.
-
getMessageBytes
com.google.protobuf.ByteString getMessageBytes()
string message = 2;
- Returns:
- The bytes for message.
-
getTemporary
boolean getTemporary()
bool temporary = 3;
- Returns:
- The temporary.
-
-