org.apache.hadoop.hbase.protobuf.generated
Interface RPCProtos.ExceptionResponseOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
RPCProtos.ExceptionResponse, RPCProtos.ExceptionResponse.Builder
Enclosing class:
RPCProtos

public static interface RPCProtos.ExceptionResponseOrBuilder
extends com.google.protobuf.MessageOrBuilder


Method Summary
 boolean getDoNotRetry()
          optional bool do_not_retry = 5;
 String getExceptionClassName()
          optional string exception_class_name = 1;
 com.google.protobuf.ByteString getExceptionClassNameBytes()
          optional string exception_class_name = 1;
 String getHostname()
          optional string hostname = 3;
 com.google.protobuf.ByteString getHostnameBytes()
          optional string hostname = 3;
 int getPort()
          optional int32 port = 4;
 String getStackTrace()
          optional string stack_trace = 2;
 com.google.protobuf.ByteString getStackTraceBytes()
          optional string stack_trace = 2;
 boolean hasDoNotRetry()
          optional bool do_not_retry = 5;
 boolean hasExceptionClassName()
          optional string exception_class_name = 1;
 boolean hasHostname()
          optional string hostname = 3;
 boolean hasPort()
          optional int32 port = 4;
 boolean hasStackTrace()
          optional string stack_trace = 2;
 
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField
 
Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
 

Method Detail

hasExceptionClassName

boolean hasExceptionClassName()
optional string exception_class_name = 1;
 Class name of the exception thrown from the server
 


getExceptionClassName

String getExceptionClassName()
optional string exception_class_name = 1;
 Class name of the exception thrown from the server
 


getExceptionClassNameBytes

com.google.protobuf.ByteString getExceptionClassNameBytes()
optional string exception_class_name = 1;
 Class name of the exception thrown from the server
 


hasStackTrace

boolean hasStackTrace()
optional string stack_trace = 2;
 Exception stack trace from the server side
 


getStackTrace

String getStackTrace()
optional string stack_trace = 2;
 Exception stack trace from the server side
 


getStackTraceBytes

com.google.protobuf.ByteString getStackTraceBytes()
optional string stack_trace = 2;
 Exception stack trace from the server side
 


hasHostname

boolean hasHostname()
optional string hostname = 3;
 Optional hostname.  Filled in for some exceptions such as region moved
 where exception gives clue on where the region may have moved.
 


getHostname

String getHostname()
optional string hostname = 3;
 Optional hostname.  Filled in for some exceptions such as region moved
 where exception gives clue on where the region may have moved.
 


getHostnameBytes

com.google.protobuf.ByteString getHostnameBytes()
optional string hostname = 3;
 Optional hostname.  Filled in for some exceptions such as region moved
 where exception gives clue on where the region may have moved.
 


hasPort

boolean hasPort()
optional int32 port = 4;


getPort

int getPort()
optional int32 port = 4;


hasDoNotRetry

boolean hasDoNotRetry()
optional bool do_not_retry = 5;
 Set if we are NOT to retry on receipt of this exception
 


getDoNotRetry

boolean getDoNotRetry()
optional bool do_not_retry = 5;
 Set if we are NOT to retry on receipt of this exception
 



Copyright © 2015 The Apache Software Foundation. All Rights Reserved.