diff --git a/hbase-examples/pom.xml b/hbase-examples/pom.xml
index ec72223eb404..f5bca9c1f6c6 100644
--- a/hbase-examples/pom.xml
+++ b/hbase-examples/pom.xml
@@ -110,9 +110,14 @@
hbase-testing-util
test
+
- org.apache.thrift
- libthrift
+ org.apache.hbase.thirdparty
+ hbase-shaded-thrift
commons-io
diff --git a/hbase-examples/src/main/java/org/apache/hadoop/hbase/thrift/DemoClient.java b/hbase-examples/src/main/java/org/apache/hadoop/hbase/thrift/DemoClient.java
index d7257aeae253..66263d8101bc 100644
--- a/hbase-examples/src/main/java/org/apache/hadoop/hbase/thrift/DemoClient.java
+++ b/hbase-examples/src/main/java/org/apache/hadoop/hbase/thrift/DemoClient.java
@@ -35,13 +35,14 @@
import org.apache.hadoop.hbase.thrift.generated.TRowResult;
import org.apache.hadoop.hbase.util.Bytes;
import org.apache.hadoop.hbase.util.ClientUtils;
-import org.apache.thrift.protocol.TBinaryProtocol;
-import org.apache.thrift.protocol.TProtocol;
-import org.apache.thrift.transport.TSaslClientTransport;
-import org.apache.thrift.transport.TSocket;
-import org.apache.thrift.transport.TTransport;
import org.apache.yetus.audience.InterfaceAudience;
+import org.apache.hbase.thirdparty.org.apache.thrift.protocol.TBinaryProtocol;
+import org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocol;
+import org.apache.hbase.thirdparty.org.apache.thrift.transport.TSaslClientTransport;
+import org.apache.hbase.thirdparty.org.apache.thrift.transport.TSocket;
+import org.apache.hbase.thirdparty.org.apache.thrift.transport.TTransport;
+
/**
* See the instructions under hbase-examples/README.txt
*/
diff --git a/hbase-examples/src/main/java/org/apache/hadoop/hbase/thrift/HttpDoAsClient.java b/hbase-examples/src/main/java/org/apache/hadoop/hbase/thrift/HttpDoAsClient.java
index 25f5511a1dd1..cdffff4eca48 100644
--- a/hbase-examples/src/main/java/org/apache/hadoop/hbase/thrift/HttpDoAsClient.java
+++ b/hbase-examples/src/main/java/org/apache/hadoop/hbase/thrift/HttpDoAsClient.java
@@ -37,11 +37,6 @@
import org.apache.hadoop.hbase.thrift.generated.Hbase;
import org.apache.hadoop.hbase.util.Bytes;
import org.apache.hadoop.hbase.util.ClientUtils;
-import org.apache.thrift.protocol.TBinaryProtocol;
-import org.apache.thrift.protocol.TProtocol;
-import org.apache.thrift.transport.THttpClient;
-import org.apache.thrift.transport.TSocket;
-import org.apache.thrift.transport.TTransport;
import org.apache.yetus.audience.InterfaceAudience;
import org.ietf.jgss.GSSContext;
import org.ietf.jgss.GSSCredential;
@@ -52,6 +47,12 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
+import org.apache.hbase.thirdparty.org.apache.thrift.protocol.TBinaryProtocol;
+import org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocol;
+import org.apache.hbase.thirdparty.org.apache.thrift.transport.THttpClient;
+import org.apache.hbase.thirdparty.org.apache.thrift.transport.TSocket;
+import org.apache.hbase.thirdparty.org.apache.thrift.transport.TTransport;
+
/**
* See the instructions under hbase-examples/README.txt
*/
diff --git a/hbase-examples/src/main/java/org/apache/hadoop/hbase/thrift2/DemoClient.java b/hbase-examples/src/main/java/org/apache/hadoop/hbase/thrift2/DemoClient.java
index 2ed97a1207fc..397338ec6389 100644
--- a/hbase-examples/src/main/java/org/apache/hadoop/hbase/thrift2/DemoClient.java
+++ b/hbase-examples/src/main/java/org/apache/hadoop/hbase/thrift2/DemoClient.java
@@ -35,15 +35,16 @@
import org.apache.hadoop.hbase.thrift2.generated.TResult;
import org.apache.hadoop.hbase.util.Bytes;
import org.apache.hadoop.hbase.util.ClientUtils;
-import org.apache.thrift.TConfiguration;
-import org.apache.thrift.protocol.TBinaryProtocol;
-import org.apache.thrift.protocol.TProtocol;
-import org.apache.thrift.transport.TSaslClientTransport;
-import org.apache.thrift.transport.TSocket;
-import org.apache.thrift.transport.TTransport;
-import org.apache.thrift.transport.layered.TFramedTransport;
import org.apache.yetus.audience.InterfaceAudience;
+import org.apache.hbase.thirdparty.org.apache.thrift.TConfiguration;
+import org.apache.hbase.thirdparty.org.apache.thrift.protocol.TBinaryProtocol;
+import org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocol;
+import org.apache.hbase.thirdparty.org.apache.thrift.transport.TSaslClientTransport;
+import org.apache.hbase.thirdparty.org.apache.thrift.transport.TSocket;
+import org.apache.hbase.thirdparty.org.apache.thrift.transport.TTransport;
+import org.apache.hbase.thirdparty.org.apache.thrift.transport.layered.TFramedTransport;
+
@InterfaceAudience.Private
public class DemoClient {
private static String host = "localhost";
diff --git a/hbase-thrift/pom.xml b/hbase-thrift/pom.xml
index 170065276505..cead040d9abf 100644
--- a/hbase-thrift/pom.xml
+++ b/hbase-thrift/pom.xml
@@ -84,9 +84,15 @@
org.apache.hbase
hbase-hadoop-compat
+
- org.apache.thrift
- libthrift
+ org.apache.hbase.thirdparty
+ hbase-shaded-thrift
org.junit.jupiter
@@ -371,12 +377,15 @@
thrift.version
"The Thrift version must be specified."
- 0\.14\.1
+ 0\.23\.\d+
-
-
[FATAL] ==========================================================================================
-[FATAL] HBase Thrift requires the thrift generator version 0.14.1.
-[FATAL] Setting it to something else needs to be reviewed for wire and behavior compatibility.
+[FATAL] HBase Thrift requires the thrift generator version 0.23.x (matching the libthrift
+[FATAL] runtime shipped in hbase-thirdparty/hbase-shaded-thrift). Setting it to something else
+[FATAL] needs to be reviewed for wire and behavior compatibility, and for source compatibility
+[FATAL] with the maven-replacer-plugin rewrite that retargets generated code to the shaded
+[FATAL] org.apache.hbase.thirdparty.org.apache.thrift namespace.
[FATAL] ==========================================================================================
-
-
@@ -450,6 +459,42 @@
+
+
+ com.google.code.maven-replacer-plugin
+ replacer
+
+ ${basedir}/src/main/java
+
+ org/apache/hadoop/hbase/thrift/generated/**/*.java
+ org/apache/hadoop/hbase/thrift2/generated/**/*.java
+
+ false
+
+
+ ([^.])org\.apache\.thrift
+ $1org.apache.hbase.thirdparty.org.apache.thrift
+
+
+
+
+
+ shade-generated-thrift-imports
+
+ replace
+
+ process-sources
+
+
+
diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/HThreadedSelectorServerArgs.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/HThreadedSelectorServerArgs.java
index 1579d36f510f..e0b4ad46289c 100644
--- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/HThreadedSelectorServerArgs.java
+++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/HThreadedSelectorServerArgs.java
@@ -19,12 +19,13 @@
import java.util.Locale;
import org.apache.hadoop.conf.Configuration;
-import org.apache.thrift.server.TThreadedSelectorServer;
-import org.apache.thrift.transport.TNonblockingServerTransport;
import org.apache.yetus.audience.InterfaceAudience;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
+import org.apache.hbase.thirdparty.org.apache.thrift.server.TThreadedSelectorServer;
+import org.apache.hbase.thirdparty.org.apache.thrift.transport.TNonblockingServerTransport;
+
/**
* A TThreadedSelectorServer.Args that reads hadoop configuration
*/
diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ImplType.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ImplType.java
index fb6668430c7c..d02a40fac9cb 100644
--- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ImplType.java
+++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ImplType.java
@@ -23,10 +23,6 @@
import java.util.Arrays;
import java.util.List;
import org.apache.hadoop.conf.Configuration;
-import org.apache.thrift.server.THsHaServer;
-import org.apache.thrift.server.TNonblockingServer;
-import org.apache.thrift.server.TServer;
-import org.apache.thrift.server.TThreadedSelectorServer;
import org.apache.yetus.audience.InterfaceAudience;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@@ -34,6 +30,10 @@
import org.apache.hbase.thirdparty.org.apache.commons.cli.CommandLine;
import org.apache.hbase.thirdparty.org.apache.commons.cli.Option;
import org.apache.hbase.thirdparty.org.apache.commons.cli.OptionGroup;
+import org.apache.hbase.thirdparty.org.apache.thrift.server.THsHaServer;
+import org.apache.hbase.thirdparty.org.apache.thrift.server.TNonblockingServer;
+import org.apache.hbase.thirdparty.org.apache.thrift.server.TServer;
+import org.apache.hbase.thirdparty.org.apache.thrift.server.TThreadedSelectorServer;
/** An enum of server implementation selections */
@InterfaceAudience.Private
diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/TBoundedThreadPoolServer.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/TBoundedThreadPoolServer.java
index 8da917384de9..6c19f866dac5 100644
--- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/TBoundedThreadPoolServer.java
+++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/TBoundedThreadPoolServer.java
@@ -26,20 +26,20 @@
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.util.EnvironmentEdgeManager;
import org.apache.hadoop.hbase.util.Threads;
-import org.apache.thrift.TException;
-import org.apache.thrift.TProcessor;
-import org.apache.thrift.protocol.TProtocol;
-import org.apache.thrift.server.TServer;
-import org.apache.thrift.server.TThreadPoolServer;
-import org.apache.thrift.transport.TServerTransport;
-import org.apache.thrift.transport.TSocket;
-import org.apache.thrift.transport.TTransport;
-import org.apache.thrift.transport.TTransportException;
import org.apache.yetus.audience.InterfaceAudience;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.apache.hbase.thirdparty.com.google.common.util.concurrent.ThreadFactoryBuilder;
+import org.apache.hbase.thirdparty.org.apache.thrift.TException;
+import org.apache.hbase.thirdparty.org.apache.thrift.TProcessor;
+import org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocol;
+import org.apache.hbase.thirdparty.org.apache.thrift.server.TServer;
+import org.apache.hbase.thirdparty.org.apache.thrift.server.TThreadPoolServer;
+import org.apache.hbase.thirdparty.org.apache.thrift.transport.TServerTransport;
+import org.apache.hbase.thirdparty.org.apache.thrift.transport.TSocket;
+import org.apache.hbase.thirdparty.org.apache.thrift.transport.TTransport;
+import org.apache.hbase.thirdparty.org.apache.thrift.transport.TTransportException;
/**
* A bounded thread pool server customized for HBase.
diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftHBaseServiceHandler.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftHBaseServiceHandler.java
index 1900c6c0f8da..7e457193b593 100644
--- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftHBaseServiceHandler.java
+++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftHBaseServiceHandler.java
@@ -85,7 +85,6 @@
import org.apache.hadoop.hbase.thrift.generated.TScan;
import org.apache.hadoop.hbase.thrift.generated.TThriftServerType;
import org.apache.hadoop.hbase.util.Bytes;
-import org.apache.thrift.TException;
import org.apache.yetus.audience.InterfaceAudience;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@@ -93,6 +92,7 @@
import org.apache.hbase.thirdparty.com.google.common.base.Throwables;
import org.apache.hbase.thirdparty.com.google.common.cache.Cache;
import org.apache.hbase.thirdparty.com.google.common.cache.CacheBuilder;
+import org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* The HBaseServiceHandler is a glue object that connects Thrift RPC calls to the HBase client API
diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftHttpServlet.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftHttpServlet.java
index d7b4445fb582..d0b77f8237c0 100644
--- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftHttpServlet.java
+++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftHttpServlet.java
@@ -30,9 +30,6 @@
import org.apache.hadoop.security.authorize.AuthorizationException;
import org.apache.hadoop.security.authorize.ProxyUsers;
import org.apache.http.HttpHeaders;
-import org.apache.thrift.TProcessor;
-import org.apache.thrift.protocol.TProtocolFactory;
-import org.apache.thrift.server.TServlet;
import org.apache.yetus.audience.InterfaceAudience;
import org.ietf.jgss.GSSContext;
import org.ietf.jgss.GSSCredential;
@@ -43,6 +40,10 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
+import org.apache.hbase.thirdparty.org.apache.thrift.TProcessor;
+import org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocolFactory;
+import org.apache.hbase.thirdparty.org.apache.thrift.server.TServlet;
+
/**
* Thrift Http Servlet is used for performing Kerberos authentication if security is enabled and
* also used for setting the user specified in "doAs" parameter.
diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftServer.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftServer.java
index 1a5b92163955..e72090f22957 100644
--- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftServer.java
+++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftServer.java
@@ -116,22 +116,6 @@
import org.apache.hadoop.util.Shell.ExitCodeException;
import org.apache.hadoop.util.Tool;
import org.apache.hadoop.util.ToolRunner;
-import org.apache.thrift.TProcessor;
-import org.apache.thrift.protocol.TBinaryProtocol;
-import org.apache.thrift.protocol.TCompactProtocol;
-import org.apache.thrift.protocol.TProtocolFactory;
-import org.apache.thrift.server.THsHaServer;
-import org.apache.thrift.server.TNonblockingServer;
-import org.apache.thrift.server.TServer;
-import org.apache.thrift.server.TServlet;
-import org.apache.thrift.server.TThreadedSelectorServer;
-import org.apache.thrift.transport.TNonblockingServerSocket;
-import org.apache.thrift.transport.TNonblockingServerTransport;
-import org.apache.thrift.transport.TSaslServerTransport;
-import org.apache.thrift.transport.TServerSocket;
-import org.apache.thrift.transport.TServerTransport;
-import org.apache.thrift.transport.TTransportFactory;
-import org.apache.thrift.transport.layered.TFramedTransport;
import org.apache.yetus.audience.InterfaceAudience;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@@ -144,6 +128,22 @@
import org.apache.hbase.thirdparty.org.apache.commons.cli.DefaultParser;
import org.apache.hbase.thirdparty.org.apache.commons.cli.HelpFormatter;
import org.apache.hbase.thirdparty.org.apache.commons.cli.Options;
+import org.apache.hbase.thirdparty.org.apache.thrift.TProcessor;
+import org.apache.hbase.thirdparty.org.apache.thrift.protocol.TBinaryProtocol;
+import org.apache.hbase.thirdparty.org.apache.thrift.protocol.TCompactProtocol;
+import org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocolFactory;
+import org.apache.hbase.thirdparty.org.apache.thrift.server.THsHaServer;
+import org.apache.hbase.thirdparty.org.apache.thrift.server.TNonblockingServer;
+import org.apache.hbase.thirdparty.org.apache.thrift.server.TServer;
+import org.apache.hbase.thirdparty.org.apache.thrift.server.TServlet;
+import org.apache.hbase.thirdparty.org.apache.thrift.server.TThreadedSelectorServer;
+import org.apache.hbase.thirdparty.org.apache.thrift.transport.TNonblockingServerSocket;
+import org.apache.hbase.thirdparty.org.apache.thrift.transport.TNonblockingServerTransport;
+import org.apache.hbase.thirdparty.org.apache.thrift.transport.TSaslServerTransport;
+import org.apache.hbase.thirdparty.org.apache.thrift.transport.TServerSocket;
+import org.apache.hbase.thirdparty.org.apache.thrift.transport.TServerTransport;
+import org.apache.hbase.thirdparty.org.apache.thrift.transport.TTransportFactory;
+import org.apache.hbase.thirdparty.org.apache.thrift.transport.layered.TFramedTransport;
import org.apache.hbase.thirdparty.org.eclipse.jetty.ee8.servlet.ServletContextHandler;
import org.apache.hbase.thirdparty.org.eclipse.jetty.ee8.servlet.ServletHolder;
import org.apache.hbase.thirdparty.org.eclipse.jetty.http.HttpVersion;
diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/AlreadyExists.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/AlreadyExists.java
index 502bbd48e6d9..74cf29a5e1df 100644
--- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/AlreadyExists.java
+++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/AlreadyExists.java
@@ -1,29 +1,29 @@
/**
- * Autogenerated by Thrift Compiler (0.14.1)
+ * Autogenerated by Thrift Compiler (0.23.0)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package org.apache.hadoop.hbase.thrift.generated;
-@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"})
/**
* An AlreadyExists exceptions signals that a table with the specified
* name already exists
*/
-@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2025-08-16")
-public class AlreadyExists extends org.apache.thrift.TException implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable {
- private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("AlreadyExists");
+@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"})
+@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.23.0)", date = "2026-06-01")
+public class AlreadyExists extends org.apache.hbase.thirdparty.org.apache.thrift.TException implements org.apache.hbase.thirdparty.org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable {
+ private static final org.apache.hbase.thirdparty.org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.hbase.thirdparty.org.apache.thrift.protocol.TStruct("AlreadyExists");
- private static final org.apache.thrift.protocol.TField MESSAGE_FIELD_DESC = new org.apache.thrift.protocol.TField("message", org.apache.thrift.protocol.TType.STRING, (short)1);
+ private static final org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField MESSAGE_FIELD_DESC = new org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField("message", org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.STRING, (short)1);
- private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new AlreadyExistsStandardSchemeFactory();
- private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new AlreadyExistsTupleSchemeFactory();
+ private static final org.apache.hbase.thirdparty.org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new AlreadyExistsStandardSchemeFactory();
+ private static final org.apache.hbase.thirdparty.org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new AlreadyExistsTupleSchemeFactory();
- public @org.apache.thrift.annotation.Nullable java.lang.String message; // required
+ public @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable java.lang.String message; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
- public enum _Fields implements org.apache.thrift.TFieldIdEnum {
+ public enum _Fields implements org.apache.hbase.thirdparty.org.apache.thrift.TFieldIdEnum {
MESSAGE((short)1, "message");
private static final java.util.Map byName = new java.util.HashMap();
@@ -37,7 +37,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum {
/**
* Find the _Fields constant that matches fieldId, or null if its not found.
*/
- @org.apache.thrift.annotation.Nullable
+ @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable
public static _Fields findByThriftId(int fieldId) {
switch(fieldId) {
case 1: // MESSAGE
@@ -60,7 +60,7 @@ public static _Fields findByThriftIdOrThrow(int fieldId) {
/**
* Find the _Fields constant that matches name, or null if its not found.
*/
- @org.apache.thrift.annotation.Nullable
+ @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable
public static _Fields findByName(java.lang.String name) {
return byName.get(name);
}
@@ -73,23 +73,25 @@ public static _Fields findByName(java.lang.String name) {
_fieldName = fieldName;
}
+ @Override
public short getThriftFieldId() {
return _thriftId;
}
+ @Override
public java.lang.String getFieldName() {
return _fieldName;
}
}
// isset id assignments
- public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
+ public static final java.util.Map<_Fields, org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
static {
- java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
- tmpMap.put(_Fields.MESSAGE, new org.apache.thrift.meta_data.FieldMetaData("message", org.apache.thrift.TFieldRequirementType.DEFAULT,
- new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
+ java.util.Map<_Fields, org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
+ tmpMap.put(_Fields.MESSAGE, new org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldMetaData("message", org.apache.hbase.thirdparty.org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldValueMetaData(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.STRING)));
metaDataMap = java.util.Collections.unmodifiableMap(tmpMap);
- org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(AlreadyExists.class, metaDataMap);
+ org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(AlreadyExists.class, metaDataMap);
}
public AlreadyExists() {
@@ -111,6 +113,7 @@ public AlreadyExists(AlreadyExists other) {
}
}
+ @Override
public AlreadyExists deepCopy() {
return new AlreadyExists(this);
}
@@ -120,12 +123,12 @@ public void clear() {
this.message = null;
}
- @org.apache.thrift.annotation.Nullable
+ @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable
public java.lang.String getMessage() {
return this.message;
}
- public AlreadyExists setMessage(@org.apache.thrift.annotation.Nullable java.lang.String message) {
+ public AlreadyExists setMessage(@org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable java.lang.String message) {
this.message = message;
return this;
}
@@ -145,7 +148,8 @@ public void setMessageIsSet(boolean value) {
}
}
- public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) {
+ @Override
+ public void setFieldValue(_Fields field, @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable java.lang.Object value) {
switch (field) {
case MESSAGE:
if (value == null) {
@@ -158,7 +162,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable
}
}
- @org.apache.thrift.annotation.Nullable
+ @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable
+ @Override
public java.lang.Object getFieldValue(_Fields field) {
switch (field) {
case MESSAGE:
@@ -169,6 +174,7 @@ public java.lang.Object getFieldValue(_Fields field) {
}
/** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
+ @Override
public boolean isSet(_Fields field) {
if (field == null) {
throw new java.lang.IllegalArgumentException();
@@ -230,7 +236,7 @@ public int compareTo(AlreadyExists other) {
return lastComparison;
}
if (isSetMessage()) {
- lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.message, other.message);
+ lastComparison = org.apache.hbase.thirdparty.org.apache.thrift.TBaseHelper.compareTo(this.message, other.message);
if (lastComparison != 0) {
return lastComparison;
}
@@ -238,16 +244,19 @@ public int compareTo(AlreadyExists other) {
return 0;
}
- @org.apache.thrift.annotation.Nullable
+ @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable
+ @Override
public _Fields fieldForId(int fieldId) {
return _Fields.findByThriftId(fieldId);
}
- public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {
+ @Override
+ public void read(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocol iprot) throws org.apache.hbase.thirdparty.org.apache.thrift.TException {
scheme(iprot).read(iprot, this);
}
- public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
+ @Override
+ public void write(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocol oprot) throws org.apache.hbase.thirdparty.org.apache.thrift.TException {
scheme(oprot).write(oprot, this);
}
@@ -267,65 +276,73 @@ public java.lang.String toString() {
return sb.toString();
}
- public void validate() throws org.apache.thrift.TException {
+ public void validate() throws org.apache.hbase.thirdparty.org.apache.thrift.TException {
// check for required fields
// check for sub-struct validity
}
private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
try {
- write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out)));
- } catch (org.apache.thrift.TException te) {
+ write(new org.apache.hbase.thirdparty.org.apache.thrift.protocol.TCompactProtocol(new org.apache.hbase.thirdparty.org.apache.thrift.transport.TIOStreamTransport(out)));
+ } catch (org.apache.hbase.thirdparty.org.apache.thrift.TException te) {
throw new java.io.IOException(te);
}
}
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException {
try {
- read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
- } catch (org.apache.thrift.TException te) {
+ read(new org.apache.hbase.thirdparty.org.apache.thrift.protocol.TCompactProtocol(new org.apache.hbase.thirdparty.org.apache.thrift.transport.TIOStreamTransport(in)));
+ } catch (org.apache.hbase.thirdparty.org.apache.thrift.TException te) {
throw new java.io.IOException(te);
}
}
- private static class AlreadyExistsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory {
+ private static class AlreadyExistsStandardSchemeFactory implements org.apache.hbase.thirdparty.org.apache.thrift.scheme.SchemeFactory {
+ @Override
public AlreadyExistsStandardScheme getScheme() {
return new AlreadyExistsStandardScheme();
}
}
- private static class AlreadyExistsStandardScheme extends org.apache.thrift.scheme.StandardScheme {
+ private static class AlreadyExistsStandardScheme extends org.apache.hbase.thirdparty.org.apache.thrift.scheme.StandardScheme {
- public void read(org.apache.thrift.protocol.TProtocol iprot, AlreadyExists struct) throws org.apache.thrift.TException {
- org.apache.thrift.protocol.TField schemeField;
- iprot.readStructBegin();
- while (true)
- {
- schemeField = iprot.readFieldBegin();
- if (schemeField.type == org.apache.thrift.protocol.TType.STOP) {
- break;
- }
- switch (schemeField.id) {
- case 1: // MESSAGE
- if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
- struct.message = iprot.readString();
- struct.setMessageIsSet(true);
- } else {
- org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
- }
+ @Override
+ public void read(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocol iprot, AlreadyExists struct) throws org.apache.hbase.thirdparty.org.apache.thrift.TException {
+ iprot.incrementRecursionDepth();
+ try {
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField schemeField;
+ iprot.readStructBegin();
+ while (true)
+ {
+ schemeField = iprot.readFieldBegin();
+ if (schemeField.type == org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.STOP) {
break;
- default:
- org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ switch (schemeField.id) {
+ case 1: // MESSAGE
+ if (schemeField.type == org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.STRING) {
+ struct.message = iprot.readString();
+ struct.setMessageIsSet(true);
+ } else {
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ default:
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ iprot.readFieldEnd();
}
- iprot.readFieldEnd();
- }
- iprot.readStructEnd();
+ iprot.readStructEnd();
- // check for required fields of primitive type, which can't be checked in the validate method
- struct.validate();
+ // check for required fields of primitive type, which can't be checked in the validate method
+ struct.validate();
+ } finally {
+ iprot.decrementRecursionDepth();
+ }
}
- public void write(org.apache.thrift.protocol.TProtocol oprot, AlreadyExists struct) throws org.apache.thrift.TException {
+ @Override
+ public void write(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocol oprot, AlreadyExists struct) throws org.apache.hbase.thirdparty.org.apache.thrift.TException {
struct.validate();
oprot.writeStructBegin(STRUCT_DESC);
@@ -340,17 +357,18 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, AlreadyExists stru
}
- private static class AlreadyExistsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory {
+ private static class AlreadyExistsTupleSchemeFactory implements org.apache.hbase.thirdparty.org.apache.thrift.scheme.SchemeFactory {
+ @Override
public AlreadyExistsTupleScheme getScheme() {
return new AlreadyExistsTupleScheme();
}
}
- private static class AlreadyExistsTupleScheme extends org.apache.thrift.scheme.TupleScheme {
+ private static class AlreadyExistsTupleScheme extends org.apache.hbase.thirdparty.org.apache.thrift.scheme.TupleScheme {
@Override
- public void write(org.apache.thrift.protocol.TProtocol prot, AlreadyExists struct) throws org.apache.thrift.TException {
- org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot;
+ public void write(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocol prot, AlreadyExists struct) throws org.apache.hbase.thirdparty.org.apache.thrift.TException {
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.hbase.thirdparty.org.apache.thrift.protocol.TTupleProtocol) prot;
java.util.BitSet optionals = new java.util.BitSet();
if (struct.isSetMessage()) {
optionals.set(0);
@@ -362,18 +380,23 @@ public void write(org.apache.thrift.protocol.TProtocol prot, AlreadyExists struc
}
@Override
- public void read(org.apache.thrift.protocol.TProtocol prot, AlreadyExists struct) throws org.apache.thrift.TException {
- org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot;
- java.util.BitSet incoming = iprot.readBitSet(1);
- if (incoming.get(0)) {
- struct.message = iprot.readString();
- struct.setMessageIsSet(true);
+ public void read(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocol prot, AlreadyExists struct) throws org.apache.hbase.thirdparty.org.apache.thrift.TException {
+ prot.incrementRecursionDepth();
+ try {
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.hbase.thirdparty.org.apache.thrift.protocol.TTupleProtocol) prot;
+ java.util.BitSet incoming = iprot.readBitSet(1);
+ if (incoming.get(0)) {
+ struct.message = iprot.readString();
+ struct.setMessageIsSet(true);
+ }
+ } finally {
+ prot.decrementRecursionDepth();
}
}
}
- private static S scheme(org.apache.thrift.protocol.TProtocol proto) {
- return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme();
+ private static S scheme(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocol proto) {
+ return (org.apache.hbase.thirdparty.org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme();
}
}
diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/BatchMutation.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/BatchMutation.java
index 89cff0ffcf05..9bc686fcc4d7 100644
--- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/BatchMutation.java
+++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/BatchMutation.java
@@ -1,30 +1,30 @@
/**
- * Autogenerated by Thrift Compiler (0.14.1)
+ * Autogenerated by Thrift Compiler (0.23.0)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package org.apache.hadoop.hbase.thrift.generated;
-@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"})
/**
* A BatchMutation object is used to apply a number of Mutations to a single row.
*/
-@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2025-08-16")
-public class BatchMutation implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable {
- private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("BatchMutation");
+@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"})
+@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.23.0)", date = "2026-06-01")
+public class BatchMutation implements org.apache.hbase.thirdparty.org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable {
+ private static final org.apache.hbase.thirdparty.org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.hbase.thirdparty.org.apache.thrift.protocol.TStruct("BatchMutation");
- private static final org.apache.thrift.protocol.TField ROW_FIELD_DESC = new org.apache.thrift.protocol.TField("row", org.apache.thrift.protocol.TType.STRING, (short)1);
- private static final org.apache.thrift.protocol.TField MUTATIONS_FIELD_DESC = new org.apache.thrift.protocol.TField("mutations", org.apache.thrift.protocol.TType.LIST, (short)2);
+ private static final org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField ROW_FIELD_DESC = new org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField("row", org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.STRING, (short)1);
+ private static final org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField MUTATIONS_FIELD_DESC = new org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField("mutations", org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.LIST, (short)2);
- private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new BatchMutationStandardSchemeFactory();
- private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new BatchMutationTupleSchemeFactory();
+ private static final org.apache.hbase.thirdparty.org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new BatchMutationStandardSchemeFactory();
+ private static final org.apache.hbase.thirdparty.org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new BatchMutationTupleSchemeFactory();
- public @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer row; // required
- public @org.apache.thrift.annotation.Nullable java.util.List mutations; // required
+ public @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable java.nio.ByteBuffer row; // required
+ public @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable java.util.List mutations; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
- public enum _Fields implements org.apache.thrift.TFieldIdEnum {
+ public enum _Fields implements org.apache.hbase.thirdparty.org.apache.thrift.TFieldIdEnum {
ROW((short)1, "row"),
MUTATIONS((short)2, "mutations");
@@ -39,7 +39,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum {
/**
* Find the _Fields constant that matches fieldId, or null if its not found.
*/
- @org.apache.thrift.annotation.Nullable
+ @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable
public static _Fields findByThriftId(int fieldId) {
switch(fieldId) {
case 1: // ROW
@@ -64,7 +64,7 @@ public static _Fields findByThriftIdOrThrow(int fieldId) {
/**
* Find the _Fields constant that matches name, or null if its not found.
*/
- @org.apache.thrift.annotation.Nullable
+ @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable
public static _Fields findByName(java.lang.String name) {
return byName.get(name);
}
@@ -77,26 +77,28 @@ public static _Fields findByName(java.lang.String name) {
_fieldName = fieldName;
}
+ @Override
public short getThriftFieldId() {
return _thriftId;
}
+ @Override
public java.lang.String getFieldName() {
return _fieldName;
}
}
// isset id assignments
- public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
+ public static final java.util.Map<_Fields, org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
static {
- java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
- tmpMap.put(_Fields.ROW, new org.apache.thrift.meta_data.FieldMetaData("row", org.apache.thrift.TFieldRequirementType.DEFAULT,
- new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Text")));
- tmpMap.put(_Fields.MUTATIONS, new org.apache.thrift.meta_data.FieldMetaData("mutations", org.apache.thrift.TFieldRequirementType.DEFAULT,
- new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST,
- new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, Mutation.class))));
+ java.util.Map<_Fields, org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
+ tmpMap.put(_Fields.ROW, new org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldMetaData("row", org.apache.hbase.thirdparty.org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldValueMetaData(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.STRING , true)));
+ tmpMap.put(_Fields.MUTATIONS, new org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldMetaData("mutations", org.apache.hbase.thirdparty.org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.hbase.thirdparty.org.apache.thrift.meta_data.ListMetaData(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.LIST,
+ new org.apache.hbase.thirdparty.org.apache.thrift.meta_data.StructMetaData(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.STRUCT, Mutation.class))));
metaDataMap = java.util.Collections.unmodifiableMap(tmpMap);
- org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(BatchMutation.class, metaDataMap);
+ org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(BatchMutation.class, metaDataMap);
}
public BatchMutation() {
@@ -107,7 +109,7 @@ public BatchMutation(
java.util.List mutations)
{
this();
- this.row = org.apache.thrift.TBaseHelper.copyBinary(row);
+ this.row = org.apache.hbase.thirdparty.org.apache.thrift.TBaseHelper.copyBinary(row);
this.mutations = mutations;
}
@@ -116,7 +118,7 @@ public BatchMutation(
*/
public BatchMutation(BatchMutation other) {
if (other.isSetRow()) {
- this.row = org.apache.thrift.TBaseHelper.copyBinary(other.row);
+ this.row = org.apache.hbase.thirdparty.org.apache.thrift.TBaseHelper.copyBinary(other.row);
}
if (other.isSetMutations()) {
java.util.List __this__mutations = new java.util.ArrayList(other.mutations.size());
@@ -127,6 +129,7 @@ public BatchMutation(BatchMutation other) {
}
}
+ @Override
public BatchMutation deepCopy() {
return new BatchMutation(this);
}
@@ -138,12 +141,12 @@ public void clear() {
}
public byte[] getRow() {
- setRow(org.apache.thrift.TBaseHelper.rightSize(row));
+ setRow(org.apache.hbase.thirdparty.org.apache.thrift.TBaseHelper.rightSize(row));
return row == null ? null : row.array();
}
public java.nio.ByteBuffer bufferForRow() {
- return org.apache.thrift.TBaseHelper.copyBinary(row);
+ return org.apache.hbase.thirdparty.org.apache.thrift.TBaseHelper.copyBinary(row);
}
public BatchMutation setRow(byte[] row) {
@@ -151,8 +154,8 @@ public BatchMutation setRow(byte[] row) {
return this;
}
- public BatchMutation setRow(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer row) {
- this.row = org.apache.thrift.TBaseHelper.copyBinary(row);
+ public BatchMutation setRow(@org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable java.nio.ByteBuffer row) {
+ this.row = org.apache.hbase.thirdparty.org.apache.thrift.TBaseHelper.copyBinary(row);
return this;
}
@@ -175,7 +178,7 @@ public int getMutationsSize() {
return (this.mutations == null) ? 0 : this.mutations.size();
}
- @org.apache.thrift.annotation.Nullable
+ @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable
public java.util.Iterator getMutationsIterator() {
return (this.mutations == null) ? null : this.mutations.iterator();
}
@@ -187,12 +190,12 @@ public void addToMutations(Mutation elem) {
this.mutations.add(elem);
}
- @org.apache.thrift.annotation.Nullable
+ @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable
public java.util.List getMutations() {
return this.mutations;
}
- public BatchMutation setMutations(@org.apache.thrift.annotation.Nullable java.util.List mutations) {
+ public BatchMutation setMutations(@org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable java.util.List mutations) {
this.mutations = mutations;
return this;
}
@@ -212,7 +215,8 @@ public void setMutationsIsSet(boolean value) {
}
}
- public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) {
+ @Override
+ public void setFieldValue(_Fields field, @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable java.lang.Object value) {
switch (field) {
case ROW:
if (value == null) {
@@ -237,7 +241,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable
}
}
- @org.apache.thrift.annotation.Nullable
+ @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable
+ @Override
public java.lang.Object getFieldValue(_Fields field) {
switch (field) {
case ROW:
@@ -251,6 +256,7 @@ public java.lang.Object getFieldValue(_Fields field) {
}
/** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
+ @Override
public boolean isSet(_Fields field) {
if (field == null) {
throw new java.lang.IllegalArgumentException();
@@ -327,7 +333,7 @@ public int compareTo(BatchMutation other) {
return lastComparison;
}
if (isSetRow()) {
- lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.row, other.row);
+ lastComparison = org.apache.hbase.thirdparty.org.apache.thrift.TBaseHelper.compareTo(this.row, other.row);
if (lastComparison != 0) {
return lastComparison;
}
@@ -337,7 +343,7 @@ public int compareTo(BatchMutation other) {
return lastComparison;
}
if (isSetMutations()) {
- lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.mutations, other.mutations);
+ lastComparison = org.apache.hbase.thirdparty.org.apache.thrift.TBaseHelper.compareTo(this.mutations, other.mutations);
if (lastComparison != 0) {
return lastComparison;
}
@@ -345,16 +351,19 @@ public int compareTo(BatchMutation other) {
return 0;
}
- @org.apache.thrift.annotation.Nullable
+ @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable
+ @Override
public _Fields fieldForId(int fieldId) {
return _Fields.findByThriftId(fieldId);
}
- public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {
+ @Override
+ public void read(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocol iprot) throws org.apache.hbase.thirdparty.org.apache.thrift.TException {
scheme(iprot).read(iprot, this);
}
- public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
+ @Override
+ public void write(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocol oprot) throws org.apache.hbase.thirdparty.org.apache.thrift.TException {
scheme(oprot).write(oprot, this);
}
@@ -367,7 +376,7 @@ public java.lang.String toString() {
if (this.row == null) {
sb.append("null");
} else {
- org.apache.thrift.TBaseHelper.toString(this.row, sb);
+ org.apache.hbase.thirdparty.org.apache.thrift.TBaseHelper.toString(this.row, sb);
}
first = false;
if (!first) sb.append(", ");
@@ -382,84 +391,92 @@ public java.lang.String toString() {
return sb.toString();
}
- public void validate() throws org.apache.thrift.TException {
+ public void validate() throws org.apache.hbase.thirdparty.org.apache.thrift.TException {
// check for required fields
// check for sub-struct validity
}
private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
try {
- write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out)));
- } catch (org.apache.thrift.TException te) {
+ write(new org.apache.hbase.thirdparty.org.apache.thrift.protocol.TCompactProtocol(new org.apache.hbase.thirdparty.org.apache.thrift.transport.TIOStreamTransport(out)));
+ } catch (org.apache.hbase.thirdparty.org.apache.thrift.TException te) {
throw new java.io.IOException(te);
}
}
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException {
try {
- read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
- } catch (org.apache.thrift.TException te) {
+ read(new org.apache.hbase.thirdparty.org.apache.thrift.protocol.TCompactProtocol(new org.apache.hbase.thirdparty.org.apache.thrift.transport.TIOStreamTransport(in)));
+ } catch (org.apache.hbase.thirdparty.org.apache.thrift.TException te) {
throw new java.io.IOException(te);
}
}
- private static class BatchMutationStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory {
+ private static class BatchMutationStandardSchemeFactory implements org.apache.hbase.thirdparty.org.apache.thrift.scheme.SchemeFactory {
+ @Override
public BatchMutationStandardScheme getScheme() {
return new BatchMutationStandardScheme();
}
}
- private static class BatchMutationStandardScheme extends org.apache.thrift.scheme.StandardScheme {
+ private static class BatchMutationStandardScheme extends org.apache.hbase.thirdparty.org.apache.thrift.scheme.StandardScheme {
- public void read(org.apache.thrift.protocol.TProtocol iprot, BatchMutation struct) throws org.apache.thrift.TException {
- org.apache.thrift.protocol.TField schemeField;
- iprot.readStructBegin();
- while (true)
- {
- schemeField = iprot.readFieldBegin();
- if (schemeField.type == org.apache.thrift.protocol.TType.STOP) {
- break;
- }
- switch (schemeField.id) {
- case 1: // ROW
- if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
- struct.row = iprot.readBinary();
- struct.setRowIsSet(true);
- } else {
- org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
- }
+ @Override
+ public void read(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocol iprot, BatchMutation struct) throws org.apache.hbase.thirdparty.org.apache.thrift.TException {
+ iprot.incrementRecursionDepth();
+ try {
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField schemeField;
+ iprot.readStructBegin();
+ while (true)
+ {
+ schemeField = iprot.readFieldBegin();
+ if (schemeField.type == org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.STOP) {
break;
- case 2: // MUTATIONS
- if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
- {
- org.apache.thrift.protocol.TList _list0 = iprot.readListBegin();
- struct.mutations = new java.util.ArrayList(_list0.size);
- @org.apache.thrift.annotation.Nullable Mutation _elem1;
- for (int _i2 = 0; _i2 < _list0.size; ++_i2)
+ }
+ switch (schemeField.id) {
+ case 1: // ROW
+ if (schemeField.type == org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.STRING) {
+ struct.row = iprot.readBinary();
+ struct.setRowIsSet(true);
+ } else {
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ case 2: // MUTATIONS
+ if (schemeField.type == org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.LIST) {
{
- _elem1 = new Mutation();
- _elem1.read(iprot);
- struct.mutations.add(_elem1);
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TList _list0 = iprot.readListBegin();
+ struct.mutations = new java.util.ArrayList(_list0.size);
+ @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable Mutation _elem1;
+ for (int _i2 = 0; _i2 < _list0.size; ++_i2)
+ {
+ _elem1 = new Mutation();
+ _elem1.read(iprot);
+ struct.mutations.add(_elem1);
+ }
+ iprot.readListEnd();
}
- iprot.readListEnd();
+ struct.setMutationsIsSet(true);
+ } else {
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
- struct.setMutationsIsSet(true);
- } else {
- org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
- }
- break;
- default:
- org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ break;
+ default:
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ iprot.readFieldEnd();
}
- iprot.readFieldEnd();
- }
- iprot.readStructEnd();
+ iprot.readStructEnd();
- // check for required fields of primitive type, which can't be checked in the validate method
- struct.validate();
+ // check for required fields of primitive type, which can't be checked in the validate method
+ struct.validate();
+ } finally {
+ iprot.decrementRecursionDepth();
+ }
}
- public void write(org.apache.thrift.protocol.TProtocol oprot, BatchMutation struct) throws org.apache.thrift.TException {
+ @Override
+ public void write(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocol oprot, BatchMutation struct) throws org.apache.hbase.thirdparty.org.apache.thrift.TException {
struct.validate();
oprot.writeStructBegin(STRUCT_DESC);
@@ -471,7 +488,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, BatchMutation stru
if (struct.mutations != null) {
oprot.writeFieldBegin(MUTATIONS_FIELD_DESC);
{
- oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.mutations.size()));
+ oprot.writeListBegin(new org.apache.hbase.thirdparty.org.apache.thrift.protocol.TList(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.STRUCT, struct.mutations.size()));
for (Mutation _iter3 : struct.mutations)
{
_iter3.write(oprot);
@@ -486,17 +503,18 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, BatchMutation stru
}
- private static class BatchMutationTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory {
+ private static class BatchMutationTupleSchemeFactory implements org.apache.hbase.thirdparty.org.apache.thrift.scheme.SchemeFactory {
+ @Override
public BatchMutationTupleScheme getScheme() {
return new BatchMutationTupleScheme();
}
}
- private static class BatchMutationTupleScheme extends org.apache.thrift.scheme.TupleScheme {
+ private static class BatchMutationTupleScheme extends org.apache.hbase.thirdparty.org.apache.thrift.scheme.TupleScheme {
@Override
- public void write(org.apache.thrift.protocol.TProtocol prot, BatchMutation struct) throws org.apache.thrift.TException {
- org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot;
+ public void write(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocol prot, BatchMutation struct) throws org.apache.hbase.thirdparty.org.apache.thrift.TException {
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.hbase.thirdparty.org.apache.thrift.protocol.TTupleProtocol) prot;
java.util.BitSet optionals = new java.util.BitSet();
if (struct.isSetRow()) {
optionals.set(0);
@@ -520,32 +538,37 @@ public void write(org.apache.thrift.protocol.TProtocol prot, BatchMutation struc
}
@Override
- public void read(org.apache.thrift.protocol.TProtocol prot, BatchMutation struct) throws org.apache.thrift.TException {
- org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot;
- java.util.BitSet incoming = iprot.readBitSet(2);
- if (incoming.get(0)) {
- struct.row = iprot.readBinary();
- struct.setRowIsSet(true);
- }
- if (incoming.get(1)) {
- {
- org.apache.thrift.protocol.TList _list5 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT);
- struct.mutations = new java.util.ArrayList(_list5.size);
- @org.apache.thrift.annotation.Nullable Mutation _elem6;
- for (int _i7 = 0; _i7 < _list5.size; ++_i7)
+ public void read(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocol prot, BatchMutation struct) throws org.apache.hbase.thirdparty.org.apache.thrift.TException {
+ prot.incrementRecursionDepth();
+ try {
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.hbase.thirdparty.org.apache.thrift.protocol.TTupleProtocol) prot;
+ java.util.BitSet incoming = iprot.readBitSet(2);
+ if (incoming.get(0)) {
+ struct.row = iprot.readBinary();
+ struct.setRowIsSet(true);
+ }
+ if (incoming.get(1)) {
{
- _elem6 = new Mutation();
- _elem6.read(iprot);
- struct.mutations.add(_elem6);
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TList _list5 = iprot.readListBegin(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.STRUCT);
+ struct.mutations = new java.util.ArrayList(_list5.size);
+ @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable Mutation _elem6;
+ for (int _i7 = 0; _i7 < _list5.size; ++_i7)
+ {
+ _elem6 = new Mutation();
+ _elem6.read(iprot);
+ struct.mutations.add(_elem6);
+ }
}
+ struct.setMutationsIsSet(true);
}
- struct.setMutationsIsSet(true);
+ } finally {
+ prot.decrementRecursionDepth();
}
}
}
- private static S scheme(org.apache.thrift.protocol.TProtocol proto) {
- return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme();
+ private static S scheme(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocol proto) {
+ return (org.apache.hbase.thirdparty.org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme();
}
}
diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/ColumnDescriptor.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/ColumnDescriptor.java
index 83691c3cc3ec..da8ba4647683 100644
--- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/ColumnDescriptor.java
+++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/ColumnDescriptor.java
@@ -1,46 +1,46 @@
/**
- * Autogenerated by Thrift Compiler (0.14.1)
+ * Autogenerated by Thrift Compiler (0.23.0)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package org.apache.hadoop.hbase.thrift.generated;
-@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"})
/**
* An HColumnDescriptor contains information about a column family
* such as the number of versions, compression settings, etc. It is
* used as input when creating a table or adding a column.
*/
-@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2025-08-16")
-public class ColumnDescriptor implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable {
- private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("ColumnDescriptor");
-
- private static final org.apache.thrift.protocol.TField NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("name", org.apache.thrift.protocol.TType.STRING, (short)1);
- private static final org.apache.thrift.protocol.TField MAX_VERSIONS_FIELD_DESC = new org.apache.thrift.protocol.TField("maxVersions", org.apache.thrift.protocol.TType.I32, (short)2);
- private static final org.apache.thrift.protocol.TField COMPRESSION_FIELD_DESC = new org.apache.thrift.protocol.TField("compression", org.apache.thrift.protocol.TType.STRING, (short)3);
- private static final org.apache.thrift.protocol.TField IN_MEMORY_FIELD_DESC = new org.apache.thrift.protocol.TField("inMemory", org.apache.thrift.protocol.TType.BOOL, (short)4);
- private static final org.apache.thrift.protocol.TField BLOOM_FILTER_TYPE_FIELD_DESC = new org.apache.thrift.protocol.TField("bloomFilterType", org.apache.thrift.protocol.TType.STRING, (short)5);
- private static final org.apache.thrift.protocol.TField BLOOM_FILTER_VECTOR_SIZE_FIELD_DESC = new org.apache.thrift.protocol.TField("bloomFilterVectorSize", org.apache.thrift.protocol.TType.I32, (short)6);
- private static final org.apache.thrift.protocol.TField BLOOM_FILTER_NB_HASHES_FIELD_DESC = new org.apache.thrift.protocol.TField("bloomFilterNbHashes", org.apache.thrift.protocol.TType.I32, (short)7);
- private static final org.apache.thrift.protocol.TField BLOCK_CACHE_ENABLED_FIELD_DESC = new org.apache.thrift.protocol.TField("blockCacheEnabled", org.apache.thrift.protocol.TType.BOOL, (short)8);
- private static final org.apache.thrift.protocol.TField TIME_TO_LIVE_FIELD_DESC = new org.apache.thrift.protocol.TField("timeToLive", org.apache.thrift.protocol.TType.I32, (short)9);
-
- private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new ColumnDescriptorStandardSchemeFactory();
- private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new ColumnDescriptorTupleSchemeFactory();
-
- public @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer name; // required
+@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"})
+@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.23.0)", date = "2026-06-01")
+public class ColumnDescriptor implements org.apache.hbase.thirdparty.org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable {
+ private static final org.apache.hbase.thirdparty.org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.hbase.thirdparty.org.apache.thrift.protocol.TStruct("ColumnDescriptor");
+
+ private static final org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField NAME_FIELD_DESC = new org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField("name", org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.STRING, (short)1);
+ private static final org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField MAX_VERSIONS_FIELD_DESC = new org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField("maxVersions", org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.I32, (short)2);
+ private static final org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField COMPRESSION_FIELD_DESC = new org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField("compression", org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.STRING, (short)3);
+ private static final org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField IN_MEMORY_FIELD_DESC = new org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField("inMemory", org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.BOOL, (short)4);
+ private static final org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField BLOOM_FILTER_TYPE_FIELD_DESC = new org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField("bloomFilterType", org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.STRING, (short)5);
+ private static final org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField BLOOM_FILTER_VECTOR_SIZE_FIELD_DESC = new org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField("bloomFilterVectorSize", org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.I32, (short)6);
+ private static final org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField BLOOM_FILTER_NB_HASHES_FIELD_DESC = new org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField("bloomFilterNbHashes", org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.I32, (short)7);
+ private static final org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField BLOCK_CACHE_ENABLED_FIELD_DESC = new org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField("blockCacheEnabled", org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.BOOL, (short)8);
+ private static final org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField TIME_TO_LIVE_FIELD_DESC = new org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField("timeToLive", org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.I32, (short)9);
+
+ private static final org.apache.hbase.thirdparty.org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new ColumnDescriptorStandardSchemeFactory();
+ private static final org.apache.hbase.thirdparty.org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new ColumnDescriptorTupleSchemeFactory();
+
+ public @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable java.nio.ByteBuffer name; // required
public int maxVersions; // required
- public @org.apache.thrift.annotation.Nullable java.lang.String compression; // required
+ public @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable java.lang.String compression; // required
public boolean inMemory; // required
- public @org.apache.thrift.annotation.Nullable java.lang.String bloomFilterType; // required
+ public @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable java.lang.String bloomFilterType; // required
public int bloomFilterVectorSize; // required
public int bloomFilterNbHashes; // required
public boolean blockCacheEnabled; // required
public int timeToLive; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
- public enum _Fields implements org.apache.thrift.TFieldIdEnum {
+ public enum _Fields implements org.apache.hbase.thirdparty.org.apache.thrift.TFieldIdEnum {
NAME((short)1, "name"),
MAX_VERSIONS((short)2, "maxVersions"),
COMPRESSION((short)3, "compression"),
@@ -62,7 +62,7 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum {
/**
* Find the _Fields constant that matches fieldId, or null if its not found.
*/
- @org.apache.thrift.annotation.Nullable
+ @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable
public static _Fields findByThriftId(int fieldId) {
switch(fieldId) {
case 1: // NAME
@@ -101,7 +101,7 @@ public static _Fields findByThriftIdOrThrow(int fieldId) {
/**
* Find the _Fields constant that matches name, or null if its not found.
*/
- @org.apache.thrift.annotation.Nullable
+ @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable
public static _Fields findByName(java.lang.String name) {
return byName.get(name);
}
@@ -114,10 +114,12 @@ public static _Fields findByName(java.lang.String name) {
_fieldName = fieldName;
}
+ @Override
public short getThriftFieldId() {
return _thriftId;
}
+ @Override
public java.lang.String getFieldName() {
return _fieldName;
}
@@ -131,29 +133,29 @@ public java.lang.String getFieldName() {
private static final int __BLOCKCACHEENABLED_ISSET_ID = 4;
private static final int __TIMETOLIVE_ISSET_ID = 5;
private byte __isset_bitfield = 0;
- public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
+ public static final java.util.Map<_Fields, org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
static {
- java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
- tmpMap.put(_Fields.NAME, new org.apache.thrift.meta_data.FieldMetaData("name", org.apache.thrift.TFieldRequirementType.DEFAULT,
- new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Text")));
- tmpMap.put(_Fields.MAX_VERSIONS, new org.apache.thrift.meta_data.FieldMetaData("maxVersions", org.apache.thrift.TFieldRequirementType.DEFAULT,
- new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32)));
- tmpMap.put(_Fields.COMPRESSION, new org.apache.thrift.meta_data.FieldMetaData("compression", org.apache.thrift.TFieldRequirementType.DEFAULT,
- new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
- tmpMap.put(_Fields.IN_MEMORY, new org.apache.thrift.meta_data.FieldMetaData("inMemory", org.apache.thrift.TFieldRequirementType.DEFAULT,
- new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL)));
- tmpMap.put(_Fields.BLOOM_FILTER_TYPE, new org.apache.thrift.meta_data.FieldMetaData("bloomFilterType", org.apache.thrift.TFieldRequirementType.DEFAULT,
- new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
- tmpMap.put(_Fields.BLOOM_FILTER_VECTOR_SIZE, new org.apache.thrift.meta_data.FieldMetaData("bloomFilterVectorSize", org.apache.thrift.TFieldRequirementType.DEFAULT,
- new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32)));
- tmpMap.put(_Fields.BLOOM_FILTER_NB_HASHES, new org.apache.thrift.meta_data.FieldMetaData("bloomFilterNbHashes", org.apache.thrift.TFieldRequirementType.DEFAULT,
- new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32)));
- tmpMap.put(_Fields.BLOCK_CACHE_ENABLED, new org.apache.thrift.meta_data.FieldMetaData("blockCacheEnabled", org.apache.thrift.TFieldRequirementType.DEFAULT,
- new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL)));
- tmpMap.put(_Fields.TIME_TO_LIVE, new org.apache.thrift.meta_data.FieldMetaData("timeToLive", org.apache.thrift.TFieldRequirementType.DEFAULT,
- new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32)));
+ java.util.Map<_Fields, org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
+ tmpMap.put(_Fields.NAME, new org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldMetaData("name", org.apache.hbase.thirdparty.org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldValueMetaData(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.STRING , true)));
+ tmpMap.put(_Fields.MAX_VERSIONS, new org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldMetaData("maxVersions", org.apache.hbase.thirdparty.org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldValueMetaData(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.I32)));
+ tmpMap.put(_Fields.COMPRESSION, new org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldMetaData("compression", org.apache.hbase.thirdparty.org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldValueMetaData(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.STRING)));
+ tmpMap.put(_Fields.IN_MEMORY, new org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldMetaData("inMemory", org.apache.hbase.thirdparty.org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldValueMetaData(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.BOOL)));
+ tmpMap.put(_Fields.BLOOM_FILTER_TYPE, new org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldMetaData("bloomFilterType", org.apache.hbase.thirdparty.org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldValueMetaData(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.STRING)));
+ tmpMap.put(_Fields.BLOOM_FILTER_VECTOR_SIZE, new org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldMetaData("bloomFilterVectorSize", org.apache.hbase.thirdparty.org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldValueMetaData(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.I32)));
+ tmpMap.put(_Fields.BLOOM_FILTER_NB_HASHES, new org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldMetaData("bloomFilterNbHashes", org.apache.hbase.thirdparty.org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldValueMetaData(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.I32)));
+ tmpMap.put(_Fields.BLOCK_CACHE_ENABLED, new org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldMetaData("blockCacheEnabled", org.apache.hbase.thirdparty.org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldValueMetaData(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.BOOL)));
+ tmpMap.put(_Fields.TIME_TO_LIVE, new org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldMetaData("timeToLive", org.apache.hbase.thirdparty.org.apache.thrift.TFieldRequirementType.DEFAULT,
+ new org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldValueMetaData(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.I32)));
metaDataMap = java.util.Collections.unmodifiableMap(tmpMap);
- org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(ColumnDescriptor.class, metaDataMap);
+ org.apache.hbase.thirdparty.org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(ColumnDescriptor.class, metaDataMap);
}
public ColumnDescriptor() {
@@ -187,7 +189,7 @@ public ColumnDescriptor(
int timeToLive)
{
this();
- this.name = org.apache.thrift.TBaseHelper.copyBinary(name);
+ this.name = org.apache.hbase.thirdparty.org.apache.thrift.TBaseHelper.copyBinary(name);
this.maxVersions = maxVersions;
setMaxVersionsIsSet(true);
this.compression = compression;
@@ -210,7 +212,7 @@ public ColumnDescriptor(
public ColumnDescriptor(ColumnDescriptor other) {
__isset_bitfield = other.__isset_bitfield;
if (other.isSetName()) {
- this.name = org.apache.thrift.TBaseHelper.copyBinary(other.name);
+ this.name = org.apache.hbase.thirdparty.org.apache.thrift.TBaseHelper.copyBinary(other.name);
}
this.maxVersions = other.maxVersions;
if (other.isSetCompression()) {
@@ -226,6 +228,7 @@ public ColumnDescriptor(ColumnDescriptor other) {
this.timeToLive = other.timeToLive;
}
+ @Override
public ColumnDescriptor deepCopy() {
return new ColumnDescriptor(this);
}
@@ -252,12 +255,12 @@ public void clear() {
}
public byte[] getName() {
- setName(org.apache.thrift.TBaseHelper.rightSize(name));
+ setName(org.apache.hbase.thirdparty.org.apache.thrift.TBaseHelper.rightSize(name));
return name == null ? null : name.array();
}
public java.nio.ByteBuffer bufferForName() {
- return org.apache.thrift.TBaseHelper.copyBinary(name);
+ return org.apache.hbase.thirdparty.org.apache.thrift.TBaseHelper.copyBinary(name);
}
public ColumnDescriptor setName(byte[] name) {
@@ -265,8 +268,8 @@ public ColumnDescriptor setName(byte[] name) {
return this;
}
- public ColumnDescriptor setName(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer name) {
- this.name = org.apache.thrift.TBaseHelper.copyBinary(name);
+ public ColumnDescriptor setName(@org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable java.nio.ByteBuffer name) {
+ this.name = org.apache.hbase.thirdparty.org.apache.thrift.TBaseHelper.copyBinary(name);
return this;
}
@@ -296,24 +299,24 @@ public ColumnDescriptor setMaxVersions(int maxVersions) {
}
public void unsetMaxVersions() {
- __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __MAXVERSIONS_ISSET_ID);
+ __isset_bitfield = org.apache.hbase.thirdparty.org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __MAXVERSIONS_ISSET_ID);
}
/** Returns true if field maxVersions is set (has been assigned a value) and false otherwise */
public boolean isSetMaxVersions() {
- return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __MAXVERSIONS_ISSET_ID);
+ return org.apache.hbase.thirdparty.org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __MAXVERSIONS_ISSET_ID);
}
public void setMaxVersionsIsSet(boolean value) {
- __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __MAXVERSIONS_ISSET_ID, value);
+ __isset_bitfield = org.apache.hbase.thirdparty.org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __MAXVERSIONS_ISSET_ID, value);
}
- @org.apache.thrift.annotation.Nullable
+ @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable
public java.lang.String getCompression() {
return this.compression;
}
- public ColumnDescriptor setCompression(@org.apache.thrift.annotation.Nullable java.lang.String compression) {
+ public ColumnDescriptor setCompression(@org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable java.lang.String compression) {
this.compression = compression;
return this;
}
@@ -344,24 +347,24 @@ public ColumnDescriptor setInMemory(boolean inMemory) {
}
public void unsetInMemory() {
- __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __INMEMORY_ISSET_ID);
+ __isset_bitfield = org.apache.hbase.thirdparty.org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __INMEMORY_ISSET_ID);
}
/** Returns true if field inMemory is set (has been assigned a value) and false otherwise */
public boolean isSetInMemory() {
- return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __INMEMORY_ISSET_ID);
+ return org.apache.hbase.thirdparty.org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __INMEMORY_ISSET_ID);
}
public void setInMemoryIsSet(boolean value) {
- __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __INMEMORY_ISSET_ID, value);
+ __isset_bitfield = org.apache.hbase.thirdparty.org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __INMEMORY_ISSET_ID, value);
}
- @org.apache.thrift.annotation.Nullable
+ @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable
public java.lang.String getBloomFilterType() {
return this.bloomFilterType;
}
- public ColumnDescriptor setBloomFilterType(@org.apache.thrift.annotation.Nullable java.lang.String bloomFilterType) {
+ public ColumnDescriptor setBloomFilterType(@org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable java.lang.String bloomFilterType) {
this.bloomFilterType = bloomFilterType;
return this;
}
@@ -392,16 +395,16 @@ public ColumnDescriptor setBloomFilterVectorSize(int bloomFilterVectorSize) {
}
public void unsetBloomFilterVectorSize() {
- __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __BLOOMFILTERVECTORSIZE_ISSET_ID);
+ __isset_bitfield = org.apache.hbase.thirdparty.org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __BLOOMFILTERVECTORSIZE_ISSET_ID);
}
/** Returns true if field bloomFilterVectorSize is set (has been assigned a value) and false otherwise */
public boolean isSetBloomFilterVectorSize() {
- return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __BLOOMFILTERVECTORSIZE_ISSET_ID);
+ return org.apache.hbase.thirdparty.org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __BLOOMFILTERVECTORSIZE_ISSET_ID);
}
public void setBloomFilterVectorSizeIsSet(boolean value) {
- __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __BLOOMFILTERVECTORSIZE_ISSET_ID, value);
+ __isset_bitfield = org.apache.hbase.thirdparty.org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __BLOOMFILTERVECTORSIZE_ISSET_ID, value);
}
public int getBloomFilterNbHashes() {
@@ -415,16 +418,16 @@ public ColumnDescriptor setBloomFilterNbHashes(int bloomFilterNbHashes) {
}
public void unsetBloomFilterNbHashes() {
- __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __BLOOMFILTERNBHASHES_ISSET_ID);
+ __isset_bitfield = org.apache.hbase.thirdparty.org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __BLOOMFILTERNBHASHES_ISSET_ID);
}
/** Returns true if field bloomFilterNbHashes is set (has been assigned a value) and false otherwise */
public boolean isSetBloomFilterNbHashes() {
- return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __BLOOMFILTERNBHASHES_ISSET_ID);
+ return org.apache.hbase.thirdparty.org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __BLOOMFILTERNBHASHES_ISSET_ID);
}
public void setBloomFilterNbHashesIsSet(boolean value) {
- __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __BLOOMFILTERNBHASHES_ISSET_ID, value);
+ __isset_bitfield = org.apache.hbase.thirdparty.org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __BLOOMFILTERNBHASHES_ISSET_ID, value);
}
public boolean isBlockCacheEnabled() {
@@ -438,16 +441,16 @@ public ColumnDescriptor setBlockCacheEnabled(boolean blockCacheEnabled) {
}
public void unsetBlockCacheEnabled() {
- __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __BLOCKCACHEENABLED_ISSET_ID);
+ __isset_bitfield = org.apache.hbase.thirdparty.org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __BLOCKCACHEENABLED_ISSET_ID);
}
/** Returns true if field blockCacheEnabled is set (has been assigned a value) and false otherwise */
public boolean isSetBlockCacheEnabled() {
- return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __BLOCKCACHEENABLED_ISSET_ID);
+ return org.apache.hbase.thirdparty.org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __BLOCKCACHEENABLED_ISSET_ID);
}
public void setBlockCacheEnabledIsSet(boolean value) {
- __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __BLOCKCACHEENABLED_ISSET_ID, value);
+ __isset_bitfield = org.apache.hbase.thirdparty.org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __BLOCKCACHEENABLED_ISSET_ID, value);
}
public int getTimeToLive() {
@@ -461,19 +464,20 @@ public ColumnDescriptor setTimeToLive(int timeToLive) {
}
public void unsetTimeToLive() {
- __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMETOLIVE_ISSET_ID);
+ __isset_bitfield = org.apache.hbase.thirdparty.org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMETOLIVE_ISSET_ID);
}
/** Returns true if field timeToLive is set (has been assigned a value) and false otherwise */
public boolean isSetTimeToLive() {
- return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMETOLIVE_ISSET_ID);
+ return org.apache.hbase.thirdparty.org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMETOLIVE_ISSET_ID);
}
public void setTimeToLiveIsSet(boolean value) {
- __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMETOLIVE_ISSET_ID, value);
+ __isset_bitfield = org.apache.hbase.thirdparty.org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMETOLIVE_ISSET_ID, value);
}
- public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) {
+ @Override
+ public void setFieldValue(_Fields field, @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable java.lang.Object value) {
switch (field) {
case NAME:
if (value == null) {
@@ -554,7 +558,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable
}
}
- @org.apache.thrift.annotation.Nullable
+ @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable
+ @Override
public java.lang.Object getFieldValue(_Fields field) {
switch (field) {
case NAME:
@@ -589,6 +594,7 @@ public java.lang.Object getFieldValue(_Fields field) {
}
/** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
+ @Override
public boolean isSet(_Fields field) {
if (field == null) {
throw new java.lang.IllegalArgumentException();
@@ -758,7 +764,7 @@ public int compareTo(ColumnDescriptor other) {
return lastComparison;
}
if (isSetName()) {
- lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.name, other.name);
+ lastComparison = org.apache.hbase.thirdparty.org.apache.thrift.TBaseHelper.compareTo(this.name, other.name);
if (lastComparison != 0) {
return lastComparison;
}
@@ -768,7 +774,7 @@ public int compareTo(ColumnDescriptor other) {
return lastComparison;
}
if (isSetMaxVersions()) {
- lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.maxVersions, other.maxVersions);
+ lastComparison = org.apache.hbase.thirdparty.org.apache.thrift.TBaseHelper.compareTo(this.maxVersions, other.maxVersions);
if (lastComparison != 0) {
return lastComparison;
}
@@ -778,7 +784,7 @@ public int compareTo(ColumnDescriptor other) {
return lastComparison;
}
if (isSetCompression()) {
- lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.compression, other.compression);
+ lastComparison = org.apache.hbase.thirdparty.org.apache.thrift.TBaseHelper.compareTo(this.compression, other.compression);
if (lastComparison != 0) {
return lastComparison;
}
@@ -788,7 +794,7 @@ public int compareTo(ColumnDescriptor other) {
return lastComparison;
}
if (isSetInMemory()) {
- lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.inMemory, other.inMemory);
+ lastComparison = org.apache.hbase.thirdparty.org.apache.thrift.TBaseHelper.compareTo(this.inMemory, other.inMemory);
if (lastComparison != 0) {
return lastComparison;
}
@@ -798,7 +804,7 @@ public int compareTo(ColumnDescriptor other) {
return lastComparison;
}
if (isSetBloomFilterType()) {
- lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.bloomFilterType, other.bloomFilterType);
+ lastComparison = org.apache.hbase.thirdparty.org.apache.thrift.TBaseHelper.compareTo(this.bloomFilterType, other.bloomFilterType);
if (lastComparison != 0) {
return lastComparison;
}
@@ -808,7 +814,7 @@ public int compareTo(ColumnDescriptor other) {
return lastComparison;
}
if (isSetBloomFilterVectorSize()) {
- lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.bloomFilterVectorSize, other.bloomFilterVectorSize);
+ lastComparison = org.apache.hbase.thirdparty.org.apache.thrift.TBaseHelper.compareTo(this.bloomFilterVectorSize, other.bloomFilterVectorSize);
if (lastComparison != 0) {
return lastComparison;
}
@@ -818,7 +824,7 @@ public int compareTo(ColumnDescriptor other) {
return lastComparison;
}
if (isSetBloomFilterNbHashes()) {
- lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.bloomFilterNbHashes, other.bloomFilterNbHashes);
+ lastComparison = org.apache.hbase.thirdparty.org.apache.thrift.TBaseHelper.compareTo(this.bloomFilterNbHashes, other.bloomFilterNbHashes);
if (lastComparison != 0) {
return lastComparison;
}
@@ -828,7 +834,7 @@ public int compareTo(ColumnDescriptor other) {
return lastComparison;
}
if (isSetBlockCacheEnabled()) {
- lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.blockCacheEnabled, other.blockCacheEnabled);
+ lastComparison = org.apache.hbase.thirdparty.org.apache.thrift.TBaseHelper.compareTo(this.blockCacheEnabled, other.blockCacheEnabled);
if (lastComparison != 0) {
return lastComparison;
}
@@ -838,7 +844,7 @@ public int compareTo(ColumnDescriptor other) {
return lastComparison;
}
if (isSetTimeToLive()) {
- lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timeToLive, other.timeToLive);
+ lastComparison = org.apache.hbase.thirdparty.org.apache.thrift.TBaseHelper.compareTo(this.timeToLive, other.timeToLive);
if (lastComparison != 0) {
return lastComparison;
}
@@ -846,16 +852,19 @@ public int compareTo(ColumnDescriptor other) {
return 0;
}
- @org.apache.thrift.annotation.Nullable
+ @org.apache.hbase.thirdparty.org.apache.thrift.annotation.Nullable
+ @Override
public _Fields fieldForId(int fieldId) {
return _Fields.findByThriftId(fieldId);
}
- public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {
+ @Override
+ public void read(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocol iprot) throws org.apache.hbase.thirdparty.org.apache.thrift.TException {
scheme(iprot).read(iprot, this);
}
- public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
+ @Override
+ public void write(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocol oprot) throws org.apache.hbase.thirdparty.org.apache.thrift.TException {
scheme(oprot).write(oprot, this);
}
@@ -868,7 +877,7 @@ public java.lang.String toString() {
if (this.name == null) {
sb.append("null");
} else {
- org.apache.thrift.TBaseHelper.toString(this.name, sb);
+ org.apache.hbase.thirdparty.org.apache.thrift.TBaseHelper.toString(this.name, sb);
}
first = false;
if (!first) sb.append(", ");
@@ -915,15 +924,15 @@ public java.lang.String toString() {
return sb.toString();
}
- public void validate() throws org.apache.thrift.TException {
+ public void validate() throws org.apache.hbase.thirdparty.org.apache.thrift.TException {
// check for required fields
// check for sub-struct validity
}
private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
try {
- write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out)));
- } catch (org.apache.thrift.TException te) {
+ write(new org.apache.hbase.thirdparty.org.apache.thrift.protocol.TCompactProtocol(new org.apache.hbase.thirdparty.org.apache.thrift.transport.TIOStreamTransport(out)));
+ } catch (org.apache.hbase.thirdparty.org.apache.thrift.TException te) {
throw new java.io.IOException(te);
}
}
@@ -932,114 +941,122 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException
try {
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
__isset_bitfield = 0;
- read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
- } catch (org.apache.thrift.TException te) {
+ read(new org.apache.hbase.thirdparty.org.apache.thrift.protocol.TCompactProtocol(new org.apache.hbase.thirdparty.org.apache.thrift.transport.TIOStreamTransport(in)));
+ } catch (org.apache.hbase.thirdparty.org.apache.thrift.TException te) {
throw new java.io.IOException(te);
}
}
- private static class ColumnDescriptorStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory {
+ private static class ColumnDescriptorStandardSchemeFactory implements org.apache.hbase.thirdparty.org.apache.thrift.scheme.SchemeFactory {
+ @Override
public ColumnDescriptorStandardScheme getScheme() {
return new ColumnDescriptorStandardScheme();
}
}
- private static class ColumnDescriptorStandardScheme extends org.apache.thrift.scheme.StandardScheme {
+ private static class ColumnDescriptorStandardScheme extends org.apache.hbase.thirdparty.org.apache.thrift.scheme.StandardScheme {
- public void read(org.apache.thrift.protocol.TProtocol iprot, ColumnDescriptor struct) throws org.apache.thrift.TException {
- org.apache.thrift.protocol.TField schemeField;
- iprot.readStructBegin();
- while (true)
- {
- schemeField = iprot.readFieldBegin();
- if (schemeField.type == org.apache.thrift.protocol.TType.STOP) {
- break;
- }
- switch (schemeField.id) {
- case 1: // NAME
- if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
- struct.name = iprot.readBinary();
- struct.setNameIsSet(true);
- } else {
- org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
- }
- break;
- case 2: // MAX_VERSIONS
- if (schemeField.type == org.apache.thrift.protocol.TType.I32) {
- struct.maxVersions = iprot.readI32();
- struct.setMaxVersionsIsSet(true);
- } else {
- org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
- }
- break;
- case 3: // COMPRESSION
- if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
- struct.compression = iprot.readString();
- struct.setCompressionIsSet(true);
- } else {
- org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
- }
- break;
- case 4: // IN_MEMORY
- if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) {
- struct.inMemory = iprot.readBool();
- struct.setInMemoryIsSet(true);
- } else {
- org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
- }
- break;
- case 5: // BLOOM_FILTER_TYPE
- if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
- struct.bloomFilterType = iprot.readString();
- struct.setBloomFilterTypeIsSet(true);
- } else {
- org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
- }
- break;
- case 6: // BLOOM_FILTER_VECTOR_SIZE
- if (schemeField.type == org.apache.thrift.protocol.TType.I32) {
- struct.bloomFilterVectorSize = iprot.readI32();
- struct.setBloomFilterVectorSizeIsSet(true);
- } else {
- org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
- }
- break;
- case 7: // BLOOM_FILTER_NB_HASHES
- if (schemeField.type == org.apache.thrift.protocol.TType.I32) {
- struct.bloomFilterNbHashes = iprot.readI32();
- struct.setBloomFilterNbHashesIsSet(true);
- } else {
- org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
- }
- break;
- case 8: // BLOCK_CACHE_ENABLED
- if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) {
- struct.blockCacheEnabled = iprot.readBool();
- struct.setBlockCacheEnabledIsSet(true);
- } else {
- org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
- }
- break;
- case 9: // TIME_TO_LIVE
- if (schemeField.type == org.apache.thrift.protocol.TType.I32) {
- struct.timeToLive = iprot.readI32();
- struct.setTimeToLiveIsSet(true);
- } else {
- org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
- }
+ @Override
+ public void read(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocol iprot, ColumnDescriptor struct) throws org.apache.hbase.thirdparty.org.apache.thrift.TException {
+ iprot.incrementRecursionDepth();
+ try {
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TField schemeField;
+ iprot.readStructBegin();
+ while (true)
+ {
+ schemeField = iprot.readFieldBegin();
+ if (schemeField.type == org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.STOP) {
break;
- default:
- org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ switch (schemeField.id) {
+ case 1: // NAME
+ if (schemeField.type == org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.STRING) {
+ struct.name = iprot.readBinary();
+ struct.setNameIsSet(true);
+ } else {
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ case 2: // MAX_VERSIONS
+ if (schemeField.type == org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.I32) {
+ struct.maxVersions = iprot.readI32();
+ struct.setMaxVersionsIsSet(true);
+ } else {
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ case 3: // COMPRESSION
+ if (schemeField.type == org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.STRING) {
+ struct.compression = iprot.readString();
+ struct.setCompressionIsSet(true);
+ } else {
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ case 4: // IN_MEMORY
+ if (schemeField.type == org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.BOOL) {
+ struct.inMemory = iprot.readBool();
+ struct.setInMemoryIsSet(true);
+ } else {
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ case 5: // BLOOM_FILTER_TYPE
+ if (schemeField.type == org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.STRING) {
+ struct.bloomFilterType = iprot.readString();
+ struct.setBloomFilterTypeIsSet(true);
+ } else {
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ case 6: // BLOOM_FILTER_VECTOR_SIZE
+ if (schemeField.type == org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.I32) {
+ struct.bloomFilterVectorSize = iprot.readI32();
+ struct.setBloomFilterVectorSizeIsSet(true);
+ } else {
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ case 7: // BLOOM_FILTER_NB_HASHES
+ if (schemeField.type == org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.I32) {
+ struct.bloomFilterNbHashes = iprot.readI32();
+ struct.setBloomFilterNbHashesIsSet(true);
+ } else {
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ case 8: // BLOCK_CACHE_ENABLED
+ if (schemeField.type == org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.BOOL) {
+ struct.blockCacheEnabled = iprot.readBool();
+ struct.setBlockCacheEnabledIsSet(true);
+ } else {
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ case 9: // TIME_TO_LIVE
+ if (schemeField.type == org.apache.hbase.thirdparty.org.apache.thrift.protocol.TType.I32) {
+ struct.timeToLive = iprot.readI32();
+ struct.setTimeToLiveIsSet(true);
+ } else {
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ break;
+ default:
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+ }
+ iprot.readFieldEnd();
}
- iprot.readFieldEnd();
- }
- iprot.readStructEnd();
+ iprot.readStructEnd();
- // check for required fields of primitive type, which can't be checked in the validate method
- struct.validate();
+ // check for required fields of primitive type, which can't be checked in the validate method
+ struct.validate();
+ } finally {
+ iprot.decrementRecursionDepth();
+ }
}
- public void write(org.apache.thrift.protocol.TProtocol oprot, ColumnDescriptor struct) throws org.apache.thrift.TException {
+ @Override
+ public void write(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocol oprot, ColumnDescriptor struct) throws org.apache.hbase.thirdparty.org.apache.thrift.TException {
struct.validate();
oprot.writeStructBegin(STRUCT_DESC);
@@ -1082,17 +1099,18 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, ColumnDescriptor s
}
- private static class ColumnDescriptorTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory {
+ private static class ColumnDescriptorTupleSchemeFactory implements org.apache.hbase.thirdparty.org.apache.thrift.scheme.SchemeFactory {
+ @Override
public ColumnDescriptorTupleScheme getScheme() {
return new ColumnDescriptorTupleScheme();
}
}
- private static class ColumnDescriptorTupleScheme extends org.apache.thrift.scheme.TupleScheme {
+ private static class ColumnDescriptorTupleScheme extends org.apache.hbase.thirdparty.org.apache.thrift.scheme.TupleScheme {
@Override
- public void write(org.apache.thrift.protocol.TProtocol prot, ColumnDescriptor struct) throws org.apache.thrift.TException {
- org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot;
+ public void write(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocol prot, ColumnDescriptor struct) throws org.apache.hbase.thirdparty.org.apache.thrift.TException {
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.hbase.thirdparty.org.apache.thrift.protocol.TTupleProtocol) prot;
java.util.BitSet optionals = new java.util.BitSet();
if (struct.isSetName()) {
optionals.set(0);
@@ -1152,50 +1170,55 @@ public void write(org.apache.thrift.protocol.TProtocol prot, ColumnDescriptor st
}
@Override
- public void read(org.apache.thrift.protocol.TProtocol prot, ColumnDescriptor struct) throws org.apache.thrift.TException {
- org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot;
- java.util.BitSet incoming = iprot.readBitSet(9);
- if (incoming.get(0)) {
- struct.name = iprot.readBinary();
- struct.setNameIsSet(true);
- }
- if (incoming.get(1)) {
- struct.maxVersions = iprot.readI32();
- struct.setMaxVersionsIsSet(true);
- }
- if (incoming.get(2)) {
- struct.compression = iprot.readString();
- struct.setCompressionIsSet(true);
- }
- if (incoming.get(3)) {
- struct.inMemory = iprot.readBool();
- struct.setInMemoryIsSet(true);
- }
- if (incoming.get(4)) {
- struct.bloomFilterType = iprot.readString();
- struct.setBloomFilterTypeIsSet(true);
- }
- if (incoming.get(5)) {
- struct.bloomFilterVectorSize = iprot.readI32();
- struct.setBloomFilterVectorSizeIsSet(true);
- }
- if (incoming.get(6)) {
- struct.bloomFilterNbHashes = iprot.readI32();
- struct.setBloomFilterNbHashesIsSet(true);
- }
- if (incoming.get(7)) {
- struct.blockCacheEnabled = iprot.readBool();
- struct.setBlockCacheEnabledIsSet(true);
- }
- if (incoming.get(8)) {
- struct.timeToLive = iprot.readI32();
- struct.setTimeToLiveIsSet(true);
+ public void read(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocol prot, ColumnDescriptor struct) throws org.apache.hbase.thirdparty.org.apache.thrift.TException {
+ prot.incrementRecursionDepth();
+ try {
+ org.apache.hbase.thirdparty.org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.hbase.thirdparty.org.apache.thrift.protocol.TTupleProtocol) prot;
+ java.util.BitSet incoming = iprot.readBitSet(9);
+ if (incoming.get(0)) {
+ struct.name = iprot.readBinary();
+ struct.setNameIsSet(true);
+ }
+ if (incoming.get(1)) {
+ struct.maxVersions = iprot.readI32();
+ struct.setMaxVersionsIsSet(true);
+ }
+ if (incoming.get(2)) {
+ struct.compression = iprot.readString();
+ struct.setCompressionIsSet(true);
+ }
+ if (incoming.get(3)) {
+ struct.inMemory = iprot.readBool();
+ struct.setInMemoryIsSet(true);
+ }
+ if (incoming.get(4)) {
+ struct.bloomFilterType = iprot.readString();
+ struct.setBloomFilterTypeIsSet(true);
+ }
+ if (incoming.get(5)) {
+ struct.bloomFilterVectorSize = iprot.readI32();
+ struct.setBloomFilterVectorSizeIsSet(true);
+ }
+ if (incoming.get(6)) {
+ struct.bloomFilterNbHashes = iprot.readI32();
+ struct.setBloomFilterNbHashesIsSet(true);
+ }
+ if (incoming.get(7)) {
+ struct.blockCacheEnabled = iprot.readBool();
+ struct.setBlockCacheEnabledIsSet(true);
+ }
+ if (incoming.get(8)) {
+ struct.timeToLive = iprot.readI32();
+ struct.setTimeToLiveIsSet(true);
+ }
+ } finally {
+ prot.decrementRecursionDepth();
}
}
}
- private static S scheme(org.apache.thrift.protocol.TProtocol proto) {
- return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme();
+ private static S scheme(org.apache.hbase.thirdparty.org.apache.thrift.protocol.TProtocol proto) {
+ return (org.apache.hbase.thirdparty.org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme();
}
}
diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/Hbase.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/Hbase.java
index 0dc47dbd3c80..a92bd551e92c 100644
--- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/Hbase.java
+++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/Hbase.java
@@ -1,13 +1,13 @@
/**
- * Autogenerated by Thrift Compiler (0.14.1)
+ * Autogenerated by Thrift Compiler (0.23.0)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package org.apache.hadoop.hbase.thrift.generated;
+@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.23.0)", date = "2026-06-01")
@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"})
-@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2025-08-16")
public class Hbase {
public interface Iface {
@@ -17,7 +17,7 @@ public interface Iface {
*
* @param tableName name of the table
*/
- public void enableTable(java.nio.ByteBuffer tableName) throws IOError, org.apache.thrift.TException;
+ public void enableTable(java.nio.ByteBuffer tableName) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Disables a table (takes it off-line) If it is being served, the master
@@ -25,32 +25,32 @@ public interface Iface {
*
* @param tableName name of the table
*/
- public void disableTable(java.nio.ByteBuffer tableName) throws IOError, org.apache.thrift.TException;
+ public void disableTable(java.nio.ByteBuffer tableName) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* @return true if table is on-line
*
* @param tableName name of the table to check
*/
- public boolean isTableEnabled(java.nio.ByteBuffer tableName) throws IOError, org.apache.thrift.TException;
+ public boolean isTableEnabled(java.nio.ByteBuffer tableName) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
- public void compact(java.nio.ByteBuffer tableNameOrRegionName) throws IOError, org.apache.thrift.TException;
+ public void compact(java.nio.ByteBuffer tableNameOrRegionName) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
- public void majorCompact(java.nio.ByteBuffer tableNameOrRegionName) throws IOError, org.apache.thrift.TException;
+ public void majorCompact(java.nio.ByteBuffer tableNameOrRegionName) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* List all the userspace tables.
*
* @return returns a list of names
*/
- public java.util.List getTableNames() throws IOError, org.apache.thrift.TException;
+ public java.util.List getTableNames() throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* List all the userspace tables and their enabled or disabled flags.
*
* @return list of tables with is enabled flags
*/
- public java.util.Map getTableNamesWithIsTableEnabled() throws IOError, org.apache.thrift.TException;
+ public java.util.Map getTableNamesWithIsTableEnabled() throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* List all the column families assoicated with a table.
@@ -59,7 +59,7 @@ public interface Iface {
*
* @param tableName table name
*/
- public java.util.Map getColumnDescriptors(java.nio.ByteBuffer tableName) throws IOError, org.apache.thrift.TException;
+ public java.util.Map getColumnDescriptors(java.nio.ByteBuffer tableName) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* List the regions associated with a table.
@@ -68,7 +68,7 @@ public interface Iface {
*
* @param tableName table name
*/
- public java.util.List getTableRegions(java.nio.ByteBuffer tableName) throws IOError, org.apache.thrift.TException;
+ public java.util.List getTableRegions(java.nio.ByteBuffer tableName) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Create a table with the specified column families. The name
@@ -84,7 +84,7 @@ public interface Iface {
*
* @param columnFamilies list of column family descriptors
*/
- public void createTable(java.nio.ByteBuffer tableName, java.util.List columnFamilies) throws IOError, IllegalArgument, AlreadyExists, org.apache.thrift.TException;
+ public void createTable(java.nio.ByteBuffer tableName, java.util.List columnFamilies) throws IOError, IllegalArgument, AlreadyExists, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Deletes a table
@@ -94,7 +94,7 @@ public interface Iface {
*
* @param tableName name of table to delete
*/
- public void deleteTable(java.nio.ByteBuffer tableName) throws IOError, org.apache.thrift.TException;
+ public void deleteTable(java.nio.ByteBuffer tableName) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Get a single TCell for the specified table, row, and column at the
@@ -110,7 +110,7 @@ public interface Iface {
*
* @param attributes Get attributes
*/
- public java.util.List get(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.nio.ByteBuffer column, java.util.Map attributes) throws IOError, org.apache.thrift.TException;
+ public java.util.List get(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.nio.ByteBuffer column, java.util.Map attributes) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Get the specified number of versions for the specified table,
@@ -128,7 +128,7 @@ public interface Iface {
*
* @param attributes Get attributes
*/
- public java.util.List getVer(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.nio.ByteBuffer column, int numVersions, java.util.Map attributes) throws IOError, org.apache.thrift.TException;
+ public java.util.List getVer(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.nio.ByteBuffer column, int numVersions, java.util.Map attributes) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Get the specified number of versions for the specified table,
@@ -149,7 +149,7 @@ public interface Iface {
*
* @param attributes Get attributes
*/
- public java.util.List getVerTs(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.nio.ByteBuffer column, long timestamp, int numVersions, java.util.Map attributes) throws IOError, org.apache.thrift.TException;
+ public java.util.List getVerTs(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.nio.ByteBuffer column, long timestamp, int numVersions, java.util.Map attributes) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Get all the data for the specified table and row at the latest
@@ -163,7 +163,7 @@ public interface Iface {
*
* @param attributes Get attributes
*/
- public java.util.List getRow(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.util.Map attributes) throws IOError, org.apache.thrift.TException;
+ public java.util.List getRow(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.util.Map attributes) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Get the specified columns for the specified table and row at the latest
@@ -179,7 +179,7 @@ public interface Iface {
*
* @param attributes Get attributes
*/
- public java.util.List getRowWithColumns(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.util.List columns, java.util.Map attributes) throws IOError, org.apache.thrift.TException;
+ public java.util.List getRowWithColumns(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.util.List columns, java.util.Map attributes) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Get all the data for the specified table and row at the specified
@@ -195,7 +195,7 @@ public interface Iface {
*
* @param attributes Get attributes
*/
- public java.util.List getRowTs(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, long timestamp, java.util.Map attributes) throws IOError, org.apache.thrift.TException;
+ public java.util.List getRowTs(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, long timestamp, java.util.Map attributes) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Get the specified columns for the specified table and row at the specified
@@ -212,7 +212,7 @@ public interface Iface {
* @param timestamp
* @param attributes Get attributes
*/
- public java.util.List getRowWithColumnsTs(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.util.List columns, long timestamp, java.util.Map attributes) throws IOError, org.apache.thrift.TException;
+ public java.util.List getRowWithColumnsTs(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.util.List columns, long timestamp, java.util.Map attributes) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Get all the data for the specified table and rows at the latest
@@ -226,7 +226,7 @@ public interface Iface {
*
* @param attributes Get attributes
*/
- public java.util.List getRows(java.nio.ByteBuffer tableName, java.util.List rows, java.util.Map attributes) throws IOError, org.apache.thrift.TException;
+ public java.util.List getRows(java.nio.ByteBuffer tableName, java.util.List rows, java.util.Map attributes) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Get the specified columns for the specified table and rows at the latest
@@ -242,7 +242,7 @@ public interface Iface {
*
* @param attributes Get attributes
*/
- public java.util.List getRowsWithColumns(java.nio.ByteBuffer tableName, java.util.List rows, java.util.List columns, java.util.Map attributes) throws IOError, org.apache.thrift.TException;
+ public java.util.List getRowsWithColumns(java.nio.ByteBuffer tableName, java.util.List rows, java.util.List columns, java.util.Map attributes) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Get all the data for the specified table and rows at the specified
@@ -258,7 +258,7 @@ public interface Iface {
*
* @param attributes Get attributes
*/
- public java.util.List getRowsTs(java.nio.ByteBuffer tableName, java.util.List rows, long timestamp, java.util.Map attributes) throws IOError, org.apache.thrift.TException;
+ public java.util.List getRowsTs(java.nio.ByteBuffer tableName, java.util.List rows, long timestamp, java.util.Map attributes) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Get the specified columns for the specified table and rows at the specified
@@ -275,7 +275,7 @@ public interface Iface {
* @param timestamp
* @param attributes Get attributes
*/
- public java.util.List getRowsWithColumnsTs(java.nio.ByteBuffer tableName, java.util.List rows, java.util.List columns, long timestamp, java.util.Map attributes) throws IOError, org.apache.thrift.TException;
+ public java.util.List getRowsWithColumnsTs(java.nio.ByteBuffer tableName, java.util.List rows, java.util.List columns, long timestamp, java.util.Map attributes) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Apply a series of mutations (updates/deletes) to a row in a
@@ -291,7 +291,7 @@ public interface Iface {
*
* @param attributes Mutation attributes
*/
- public void mutateRow(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.util.List mutations, java.util.Map attributes) throws IOError, IllegalArgument, org.apache.thrift.TException;
+ public void mutateRow(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.util.List mutations, java.util.Map attributes) throws IOError, IllegalArgument, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Apply a series of mutations (updates/deletes) to a row in a
@@ -309,7 +309,7 @@ public interface Iface {
*
* @param attributes Mutation attributes
*/
- public void mutateRowTs(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.util.List mutations, long timestamp, java.util.Map attributes) throws IOError, IllegalArgument, org.apache.thrift.TException;
+ public void mutateRowTs(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.util.List mutations, long timestamp, java.util.Map attributes) throws IOError, IllegalArgument, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Apply a series of batches (each a series of mutations on a single row)
@@ -323,7 +323,7 @@ public interface Iface {
*
* @param attributes Mutation attributes
*/
- public void mutateRows(java.nio.ByteBuffer tableName, java.util.List rowBatches, java.util.Map attributes) throws IOError, IllegalArgument, org.apache.thrift.TException;
+ public void mutateRows(java.nio.ByteBuffer tableName, java.util.List rowBatches, java.util.Map attributes) throws IOError, IllegalArgument, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Apply a series of batches (each a series of mutations on a single row)
@@ -339,7 +339,7 @@ public interface Iface {
*
* @param attributes Mutation attributes
*/
- public void mutateRowsTs(java.nio.ByteBuffer tableName, java.util.List rowBatches, long timestamp, java.util.Map attributes) throws IOError, IllegalArgument, org.apache.thrift.TException;
+ public void mutateRowsTs(java.nio.ByteBuffer tableName, java.util.List rowBatches, long timestamp, java.util.Map attributes) throws IOError, IllegalArgument, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Atomically increment the column value specified. Returns the next value post increment.
@@ -352,7 +352,7 @@ public interface Iface {
*
* @param value amount to increment by
*/
- public long atomicIncrement(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.nio.ByteBuffer column, long value) throws IOError, IllegalArgument, org.apache.thrift.TException;
+ public long atomicIncrement(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.nio.ByteBuffer column, long value) throws IOError, IllegalArgument, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Delete all cells that match the passed row and column.
@@ -365,7 +365,7 @@ public interface Iface {
*
* @param attributes Delete attributes
*/
- public void deleteAll(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.nio.ByteBuffer column, java.util.Map attributes) throws IOError, org.apache.thrift.TException;
+ public void deleteAll(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.nio.ByteBuffer column, java.util.Map attributes) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Delete all cells that match the passed row and column and whose
@@ -381,7 +381,7 @@ public interface Iface {
*
* @param attributes Delete attributes
*/
- public void deleteAllTs(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.nio.ByteBuffer column, long timestamp, java.util.Map attributes) throws IOError, org.apache.thrift.TException;
+ public void deleteAllTs(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.nio.ByteBuffer column, long timestamp, java.util.Map attributes) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Completely delete the row's cells.
@@ -392,7 +392,7 @@ public interface Iface {
*
* @param attributes Delete attributes
*/
- public void deleteAllRow(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.util.Map attributes) throws IOError, org.apache.thrift.TException;
+ public void deleteAllRow(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.util.Map attributes) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Increment a cell by the ammount.
@@ -402,9 +402,9 @@ public interface Iface {
*
* @param increment The single increment to apply
*/
- public void increment(TIncrement increment) throws IOError, org.apache.thrift.TException;
+ public void increment(TIncrement increment) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
- public void incrementRows(java.util.List increments) throws IOError, org.apache.thrift.TException;
+ public void incrementRows(java.util.List increments) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Completely delete the row's cells marked with a timestamp
@@ -418,7 +418,7 @@ public interface Iface {
*
* @param attributes Delete attributes
*/
- public void deleteAllRowTs(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, long timestamp, java.util.Map attributes) throws IOError, org.apache.thrift.TException;
+ public void deleteAllRowTs(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, long timestamp, java.util.Map attributes) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Get a scanner on the current table, using the Scan instance
@@ -430,7 +430,7 @@ public interface Iface {
*
* @param attributes Scan attributes
*/
- public int scannerOpenWithScan(java.nio.ByteBuffer tableName, TScan scan, java.util.Map attributes) throws IOError, org.apache.thrift.TException;
+ public int scannerOpenWithScan(java.nio.ByteBuffer tableName, TScan scan, java.util.Map attributes) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Get a scanner on the current table starting at the specified row and
@@ -449,7 +449,7 @@ public interface Iface {
*
* @param attributes Scan attributes
*/
- public int scannerOpen(java.nio.ByteBuffer tableName, java.nio.ByteBuffer startRow, java.util.List columns, java.util.Map attributes) throws IOError, org.apache.thrift.TException;
+ public int scannerOpen(java.nio.ByteBuffer tableName, java.nio.ByteBuffer startRow, java.util.List columns, java.util.Map attributes) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Get a scanner on the current table starting and stopping at the
@@ -472,7 +472,7 @@ public interface Iface {
*
* @param attributes Scan attributes
*/
- public int scannerOpenWithStop(java.nio.ByteBuffer tableName, java.nio.ByteBuffer startRow, java.nio.ByteBuffer stopRow, java.util.List columns, java.util.Map attributes) throws IOError, org.apache.thrift.TException;
+ public int scannerOpenWithStop(java.nio.ByteBuffer tableName, java.nio.ByteBuffer startRow, java.nio.ByteBuffer stopRow, java.util.List columns, java.util.Map attributes) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Open a scanner for a given prefix. That is all rows will have the specified
@@ -488,7 +488,7 @@ public interface Iface {
*
* @param attributes Scan attributes
*/
- public int scannerOpenWithPrefix(java.nio.ByteBuffer tableName, java.nio.ByteBuffer startAndPrefix, java.util.List columns, java.util.Map attributes) throws IOError, org.apache.thrift.TException;
+ public int scannerOpenWithPrefix(java.nio.ByteBuffer tableName, java.nio.ByteBuffer startAndPrefix, java.util.List columns, java.util.Map attributes) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Get a scanner on the current table starting at the specified row and
@@ -510,7 +510,7 @@ public interface Iface {
*
* @param attributes Scan attributes
*/
- public int scannerOpenTs(java.nio.ByteBuffer tableName, java.nio.ByteBuffer startRow, java.util.List columns, long timestamp, java.util.Map attributes) throws IOError, org.apache.thrift.TException;
+ public int scannerOpenTs(java.nio.ByteBuffer tableName, java.nio.ByteBuffer startRow, java.util.List columns, long timestamp, java.util.Map attributes) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Get a scanner on the current table starting and stopping at the
@@ -536,7 +536,7 @@ public interface Iface {
*
* @param attributes Scan attributes
*/
- public int scannerOpenWithStopTs(java.nio.ByteBuffer tableName, java.nio.ByteBuffer startRow, java.nio.ByteBuffer stopRow, java.util.List columns, long timestamp, java.util.Map attributes) throws IOError, org.apache.thrift.TException;
+ public int scannerOpenWithStopTs(java.nio.ByteBuffer tableName, java.nio.ByteBuffer startRow, java.nio.ByteBuffer stopRow, java.util.List columns, long timestamp, java.util.Map attributes) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Returns the scanner's current row value and advances to the next
@@ -552,7 +552,7 @@ public interface Iface {
*
* @param id id of a scanner returned by scannerOpen
*/
- public java.util.List scannerGet(int id) throws IOError, IllegalArgument, org.apache.thrift.TException;
+ public java.util.List scannerGet(int id) throws IOError, IllegalArgument, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Returns, starting at the scanner's current row value nbRows worth of
@@ -570,7 +570,7 @@ public interface Iface {
*
* @param nbRows number of results to return
*/
- public java.util.List scannerGetList(int id, int nbRows) throws IOError, IllegalArgument, org.apache.thrift.TException;
+ public java.util.List scannerGetList(int id, int nbRows) throws IOError, IllegalArgument, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Closes the server-state associated with an open scanner.
@@ -579,7 +579,7 @@ public interface Iface {
*
* @param id id of a scanner returned by scannerOpen
*/
- public void scannerClose(int id) throws IOError, IllegalArgument, org.apache.thrift.TException;
+ public void scannerClose(int id) throws IOError, IllegalArgument, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Get the regininfo for the specified row. It scans
@@ -589,7 +589,7 @@ public interface Iface {
*
* @param row row key
*/
- public TRegionInfo getRegionInfo(java.nio.ByteBuffer row) throws IOError, org.apache.thrift.TException;
+ public TRegionInfo getRegionInfo(java.nio.ByteBuffer row) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Appends values to one or more columns within a single row.
@@ -598,7 +598,7 @@ public interface Iface {
*
* @param append The single append operation to apply
*/
- public java.util.List append(TAppend append) throws IOError, org.apache.thrift.TException;
+ public java.util.List append(TAppend append) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Atomically checks if a row/family/qualifier value matches the expected
@@ -620,172 +620,175 @@ public interface Iface {
*
* @param attributes Mutation attributes
*/
- public boolean checkAndPut(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.nio.ByteBuffer column, java.nio.ByteBuffer value, Mutation mput, java.util.Map attributes) throws IOError, IllegalArgument, org.apache.thrift.TException;
+ public boolean checkAndPut(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.nio.ByteBuffer column, java.nio.ByteBuffer value, Mutation mput, java.util.Map attributes) throws IOError, IllegalArgument, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Get the type of this thrift server.
*
* @return the type of this thrift server
*/
- public TThriftServerType getThriftServerType() throws org.apache.thrift.TException;
+ public TThriftServerType getThriftServerType() throws org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Returns the cluster ID for this cluster.
*/
- public java.lang.String getClusterId() throws org.apache.thrift.TException;
+ public java.lang.String getClusterId() throws org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Grant permissions in namespace or table level.
*
* @param info
*/
- public boolean grant(TAccessControlEntity info) throws IOError, org.apache.thrift.TException;
+ public boolean grant(TAccessControlEntity info) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
/**
* Revoke permissions in namespace or table level.
*
* @param info
*/
- public boolean revoke(TAccessControlEntity info) throws IOError, org.apache.thrift.TException;
+ public boolean revoke(TAccessControlEntity info) throws IOError, org.apache.hbase.thirdparty.org.apache.thrift.TException;
}
public interface AsyncIface {
- public void enableTable(java.nio.ByteBuffer tableName, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
+ public void enableTable(java.nio.ByteBuffer tableName, org.apache.hbase.thirdparty.org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.hbase.thirdparty.org.apache.thrift.TException;
- public void disableTable(java.nio.ByteBuffer tableName, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
+ public void disableTable(java.nio.ByteBuffer tableName, org.apache.hbase.thirdparty.org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.hbase.thirdparty.org.apache.thrift.TException;
- public void isTableEnabled(java.nio.ByteBuffer tableName, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
+ public void isTableEnabled(java.nio.ByteBuffer tableName, org.apache.hbase.thirdparty.org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.hbase.thirdparty.org.apache.thrift.TException;
- public void compact(java.nio.ByteBuffer tableNameOrRegionName, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
+ public void compact(java.nio.ByteBuffer tableNameOrRegionName, org.apache.hbase.thirdparty.org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.hbase.thirdparty.org.apache.thrift.TException;
- public void majorCompact(java.nio.ByteBuffer tableNameOrRegionName, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
+ public void majorCompact(java.nio.ByteBuffer tableNameOrRegionName, org.apache.hbase.thirdparty.org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.hbase.thirdparty.org.apache.thrift.TException;
- public void getTableNames(org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException;
+ public void getTableNames(org.apache.hbase.thirdparty.org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.hbase.thirdparty.org.apache.thrift.TException;
- public void getTableNamesWithIsTableEnabled(org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException;
+ public void getTableNamesWithIsTableEnabled(org.apache.hbase.thirdparty.org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.hbase.thirdparty.org.apache.thrift.TException;
- public void getColumnDescriptors(java.nio.ByteBuffer tableName, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException;
+ public void getColumnDescriptors(java.nio.ByteBuffer tableName, org.apache.hbase.thirdparty.org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.hbase.thirdparty.org.apache.thrift.TException;
- public void getTableRegions(java.nio.ByteBuffer tableName, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException;
+ public void getTableRegions(java.nio.ByteBuffer tableName, org.apache.hbase.thirdparty.org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.hbase.thirdparty.org.apache.thrift.TException;
- public void createTable(java.nio.ByteBuffer tableName, java.util.List columnFamilies, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
+ public void createTable(java.nio.ByteBuffer tableName, java.util.List columnFamilies, org.apache.hbase.thirdparty.org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.hbase.thirdparty.org.apache.thrift.TException;
- public void deleteTable(java.nio.ByteBuffer tableName, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
+ public void deleteTable(java.nio.ByteBuffer tableName, org.apache.hbase.thirdparty.org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.hbase.thirdparty.org.apache.thrift.TException;
- public void get(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.nio.ByteBuffer column, java.util.Map attributes, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException;
+ public void get(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.nio.ByteBuffer column, java.util.Map attributes, org.apache.hbase.thirdparty.org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.hbase.thirdparty.org.apache.thrift.TException;
- public void getVer(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.nio.ByteBuffer column, int numVersions, java.util.Map attributes, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException;
+ public void getVer(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.nio.ByteBuffer column, int numVersions, java.util.Map attributes, org.apache.hbase.thirdparty.org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.hbase.thirdparty.org.apache.thrift.TException;
- public void getVerTs(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.nio.ByteBuffer column, long timestamp, int numVersions, java.util.Map attributes, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException;
+ public void getVerTs(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.nio.ByteBuffer column, long timestamp, int numVersions, java.util.Map attributes, org.apache.hbase.thirdparty.org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.hbase.thirdparty.org.apache.thrift.TException;
- public void getRow(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.util.Map attributes, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException;
+ public void getRow(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.util.Map attributes, org.apache.hbase.thirdparty.org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.hbase.thirdparty.org.apache.thrift.TException;
- public void getRowWithColumns(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.util.List columns, java.util.Map attributes, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException;
+ public void getRowWithColumns(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.util.List columns, java.util.Map attributes, org.apache.hbase.thirdparty.org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.hbase.thirdparty.org.apache.thrift.TException;
- public void getRowTs(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, long timestamp, java.util.Map attributes, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException;
+ public void getRowTs(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, long timestamp, java.util.Map attributes, org.apache.hbase.thirdparty.org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.hbase.thirdparty.org.apache.thrift.TException;
- public void getRowWithColumnsTs(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.util.List columns, long timestamp, java.util.Map attributes, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException;
+ public void getRowWithColumnsTs(java.nio.ByteBuffer tableName, java.nio.ByteBuffer row, java.util.List columns, long timestamp, java.util.Map attributes, org.apache.hbase.thirdparty.org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.hbase.thirdparty.org.apache.thrift.TException;
- public void getRows(java.nio.ByteBuffer tableName, java.util.List rows, java.util.Map attributes, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException;
+ public void getRows(java.nio.ByteBuffer tableName, java.util.List rows, java.util.Map attributes, org.apache.hbase.thirdparty.org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.hbase.thirdparty.org.apache.thrift.TException;
- public void getRowsWithColumns(java.nio.ByteBuffer tableName, java.util.List rows, java.util.List columns, java.util.Map attributes, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException;
+ public void getRowsWithColumns(java.nio.ByteBuffer tableName, java.util.List rows, java.util.List columns, java.util.Map attributes, org.apache.hbase.thirdparty.org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.hbase.thirdparty.org.apache.thrift.TException;
- public void getRowsTs(java.nio.ByteBuffer tableName, java.util.List rows, long timestamp, java.util.Map attributes, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException;
+ public void getRowsTs(java.nio.ByteBuffer tableName, java.util.List rows, long timestamp, java.util.Map attributes, org.apache.hbase.thirdparty.org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.hbase.thirdparty.org.apache.thrift.TException;
- public void getRowsWithColumnsTs(java.nio.ByteBuffer tableName, java.util.List rows, java.util.List columns, long timestamp, java.util.Map attributes, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException;
+ public void getRowsWithColumnsTs(java.nio.ByteBuffer tableName, java.util.List rows, java.util.List