Package io.grpc.alts.internal
Interface HandshakerStatusOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
HandshakerStatus
,HandshakerStatus.Builder
public interface HandshakerStatusOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getCode()
The status code.java.lang.String
getDetails()
The status details.com.google.protobuf.ByteString
getDetailsBytes()
The status details.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCode
int getCode()
The status code. This could be the gRPC status code.
uint32 code = 1;
- Returns:
- The code.
-
getDetails
java.lang.String getDetails()
The status details.
string details = 2;
- Returns:
- The details.
-
getDetailsBytes
com.google.protobuf.ByteString getDetailsBytes()
The status details.
string details = 2;
- Returns:
- The bytes for details.
-
-