hbase git commit: HBASE-18731 [compat 1-2] Mark protected methods of QuotaSettings that touch Protobuf internals as IA.Private

2018-02-28 Thread busbey
Repository: hbase
Updated Branches:
  refs/heads/branch-1.4 e533e0fc6 -> 77e7ae751


HBASE-18731 [compat 1-2] Mark protected methods of QuotaSettings that touch 
Protobuf internals as IA.Private

Signed-off-by: Michael Stack 


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/77e7ae75
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/77e7ae75
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/77e7ae75

Branch: refs/heads/branch-1.4
Commit: 77e7ae751d6ad7efc89a37ca9f2fe4dc17547dac
Parents: e533e0f
Author: Sean Busbey 
Authored: Thu Sep 21 14:04:42 2017 -0500
Committer: Sean Busbey 
Committed: Wed Feb 28 13:26:04 2018 -0600

--
 .../main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java  | 4 
 1 file changed, 4 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/77e7ae75/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
index 3a8c158..58f4a62 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
@@ -49,7 +49,9 @@ public abstract class QuotaSettings {
   /**
* Convert a QuotaSettings to a protocol buffer SetQuotaRequest. This is 
used internally by the
* Admin client to serialize the quota settings and send them to the master.
+   * @deprecated Removed in HBase 2.0+ as a part of removing protobuf from our 
API
*/
+  @Deprecated
   public static SetQuotaRequest buildSetQuotaRequestProto(final QuotaSettings 
settings) {
 SetQuotaRequest.Builder builder = SetQuotaRequest.newBuilder();
 if (settings.getUserName() != null) {
@@ -68,7 +70,9 @@ public abstract class QuotaSettings {
   /**
* Called by toSetQuotaRequestProto() the subclass should implement this 
method to set the
* specific SetQuotaRequest properties.
+   * @deprecated Removed in HBase 2.0+ as a part of removing protobuf from our 
API
*/
+  @Deprecated
   protected abstract void setupSetQuotaRequest(SetQuotaRequest.Builder 
builder);
 
   protected String ownerToString() {



hbase git commit: HBASE-18731 [compat 1-2] Mark protected methods of QuotaSettings that touch Protobuf internals as IA.Private

2017-09-25 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/branch-1.3 1b3a745f8 -> b41dbd37e


HBASE-18731 [compat 1-2] Mark protected methods of QuotaSettings that touch 
Protobuf internals as IA.Private

Signed-off-by: Michael Stack 


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/b41dbd37
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/b41dbd37
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/b41dbd37

Branch: refs/heads/branch-1.3
Commit: b41dbd37e1360e2dfaa9ff1768a5fa87aea82558
Parents: 1b3a745
Author: Sean Busbey 
Authored: Thu Sep 21 14:04:42 2017 -0500
Committer: Michael Stack 
Committed: Mon Sep 25 21:01:57 2017 -0700

--
 .../main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java  | 4 
 1 file changed, 4 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/b41dbd37/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
index 3a8c158..58f4a62 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
@@ -49,7 +49,9 @@ public abstract class QuotaSettings {
   /**
* Convert a QuotaSettings to a protocol buffer SetQuotaRequest. This is 
used internally by the
* Admin client to serialize the quota settings and send them to the master.
+   * @deprecated Removed in HBase 2.0+ as a part of removing protobuf from our 
API
*/
+  @Deprecated
   public static SetQuotaRequest buildSetQuotaRequestProto(final QuotaSettings 
settings) {
 SetQuotaRequest.Builder builder = SetQuotaRequest.newBuilder();
 if (settings.getUserName() != null) {
@@ -68,7 +70,9 @@ public abstract class QuotaSettings {
   /**
* Called by toSetQuotaRequestProto() the subclass should implement this 
method to set the
* specific SetQuotaRequest properties.
+   * @deprecated Removed in HBase 2.0+ as a part of removing protobuf from our 
API
*/
+  @Deprecated
   protected abstract void setupSetQuotaRequest(SetQuotaRequest.Builder 
builder);
 
   protected String ownerToString() {



hbase git commit: HBASE-18731 [compat 1-2] Mark protected methods of QuotaSettings that touch Protobuf internals as IA.Private

2017-09-25 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/branch-1.1 55f6e3346 -> c98aae190


HBASE-18731 [compat 1-2] Mark protected methods of QuotaSettings that touch 
Protobuf internals as IA.Private

Signed-off-by: Michael Stack 


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/c98aae19
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/c98aae19
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/c98aae19

Branch: refs/heads/branch-1.1
Commit: c98aae190af5ad9f9e9aa07ccdb3737c837de8c8
Parents: 55f6e33
Author: Sean Busbey 
Authored: Thu Sep 21 14:04:42 2017 -0500
Committer: Michael Stack 
Committed: Mon Sep 25 21:02:34 2017 -0700

--
 .../main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java  | 4 
 1 file changed, 4 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/c98aae19/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
index 3a8c158..58f4a62 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
@@ -49,7 +49,9 @@ public abstract class QuotaSettings {
   /**
* Convert a QuotaSettings to a protocol buffer SetQuotaRequest. This is 
used internally by the
* Admin client to serialize the quota settings and send them to the master.
+   * @deprecated Removed in HBase 2.0+ as a part of removing protobuf from our 
API
*/
+  @Deprecated
   public static SetQuotaRequest buildSetQuotaRequestProto(final QuotaSettings 
settings) {
 SetQuotaRequest.Builder builder = SetQuotaRequest.newBuilder();
 if (settings.getUserName() != null) {
@@ -68,7 +70,9 @@ public abstract class QuotaSettings {
   /**
* Called by toSetQuotaRequestProto() the subclass should implement this 
method to set the
* specific SetQuotaRequest properties.
+   * @deprecated Removed in HBase 2.0+ as a part of removing protobuf from our 
API
*/
+  @Deprecated
   protected abstract void setupSetQuotaRequest(SetQuotaRequest.Builder 
builder);
 
   protected String ownerToString() {



hbase git commit: HBASE-18731 [compat 1-2] Mark protected methods of QuotaSettings that touch Protobuf internals as IA.Private

2017-09-25 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/branch-1.2 5e240625b -> fa49bb4db


HBASE-18731 [compat 1-2] Mark protected methods of QuotaSettings that touch 
Protobuf internals as IA.Private

Signed-off-by: Michael Stack 


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/fa49bb4d
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/fa49bb4d
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/fa49bb4d

Branch: refs/heads/branch-1.2
Commit: fa49bb4db9431879ec71e39ddc099b7bf123fb4e
Parents: 5e24062
Author: Sean Busbey 
Authored: Thu Sep 21 14:04:42 2017 -0500
Committer: Michael Stack 
Committed: Mon Sep 25 21:02:17 2017 -0700

--
 .../main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java  | 4 
 1 file changed, 4 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/fa49bb4d/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
index 3a8c158..58f4a62 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
@@ -49,7 +49,9 @@ public abstract class QuotaSettings {
   /**
* Convert a QuotaSettings to a protocol buffer SetQuotaRequest. This is 
used internally by the
* Admin client to serialize the quota settings and send them to the master.
+   * @deprecated Removed in HBase 2.0+ as a part of removing protobuf from our 
API
*/
+  @Deprecated
   public static SetQuotaRequest buildSetQuotaRequestProto(final QuotaSettings 
settings) {
 SetQuotaRequest.Builder builder = SetQuotaRequest.newBuilder();
 if (settings.getUserName() != null) {
@@ -68,7 +70,9 @@ public abstract class QuotaSettings {
   /**
* Called by toSetQuotaRequestProto() the subclass should implement this 
method to set the
* specific SetQuotaRequest properties.
+   * @deprecated Removed in HBase 2.0+ as a part of removing protobuf from our 
API
*/
+  @Deprecated
   protected abstract void setupSetQuotaRequest(SetQuotaRequest.Builder 
builder);
 
   protected String ownerToString() {



hbase git commit: HBASE-18731 [compat 1-2] Mark protected methods of QuotaSettings that touch Protobuf internals as IA.Private

2017-09-25 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/branch-1 eeaa9aee6 -> fa7d0ccb0


HBASE-18731 [compat 1-2] Mark protected methods of QuotaSettings that touch 
Protobuf internals as IA.Private

Signed-off-by: Michael Stack 


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/fa7d0ccb
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/fa7d0ccb
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/fa7d0ccb

Branch: refs/heads/branch-1
Commit: fa7d0ccb05b7cc5aa8101c069a6d9c5095813744
Parents: eeaa9ae
Author: Sean Busbey 
Authored: Thu Sep 21 14:04:42 2017 -0500
Committer: Michael Stack 
Committed: Mon Sep 25 21:01:18 2017 -0700

--
 .../main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java  | 4 
 1 file changed, 4 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/fa7d0ccb/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
index 3a8c158..58f4a62 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
@@ -49,7 +49,9 @@ public abstract class QuotaSettings {
   /**
* Convert a QuotaSettings to a protocol buffer SetQuotaRequest. This is 
used internally by the
* Admin client to serialize the quota settings and send them to the master.
+   * @deprecated Removed in HBase 2.0+ as a part of removing protobuf from our 
API
*/
+  @Deprecated
   public static SetQuotaRequest buildSetQuotaRequestProto(final QuotaSettings 
settings) {
 SetQuotaRequest.Builder builder = SetQuotaRequest.newBuilder();
 if (settings.getUserName() != null) {
@@ -68,7 +70,9 @@ public abstract class QuotaSettings {
   /**
* Called by toSetQuotaRequestProto() the subclass should implement this 
method to set the
* specific SetQuotaRequest properties.
+   * @deprecated Removed in HBase 2.0+ as a part of removing protobuf from our 
API
*/
+  @Deprecated
   protected abstract void setupSetQuotaRequest(SetQuotaRequest.Builder 
builder);
 
   protected String ownerToString() {



[40/47] hbase git commit: HBASE-18731 [compat 1-2] Mark protected methods of QuotaSettings that touch Protobuf internals as IA.Private

2017-09-23 Thread busbey
HBASE-18731 [compat 1-2] Mark protected methods of QuotaSettings that touch 
Protobuf internals as IA.Private

Signed-off-by: Michael Stack 


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/e3935998
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/e3935998
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/e3935998

Branch: refs/heads/HBASE-18467
Commit: e39359986c4765946cde30da2957324cb7c9705c
Parents: a6c3c64
Author: Sean Busbey 
Authored: Thu Sep 21 09:57:39 2017 -0500
Committer: Sean Busbey 
Committed: Thu Sep 21 14:00:10 2017 -0500

--
 .../main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java| 2 ++
 1 file changed, 2 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/e3935998/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
index dbea5fb..cf04f92 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
@@ -56,6 +56,7 @@ public abstract class QuotaSettings {
* This is used internally by the Admin client to serialize the quota 
settings
* and send them to the master.
*/
+  @InterfaceAudience.Private
   public static SetQuotaRequest buildSetQuotaRequestProto(final QuotaSettings 
settings) {
 SetQuotaRequest.Builder builder = SetQuotaRequest.newBuilder();
 if (settings.getUserName() != null) {
@@ -76,6 +77,7 @@ public abstract class QuotaSettings {
* the subclass should implement this method to set the specific 
SetQuotaRequest
* properties.
*/
+  @InterfaceAudience.Private
   protected abstract void setupSetQuotaRequest(SetQuotaRequest.Builder 
builder);
 
   protected String ownerToString() {



hbase git commit: HBASE-18731 [compat 1-2] Mark protected methods of QuotaSettings that touch Protobuf internals as IA.Private

2017-09-21 Thread busbey
Repository: hbase
Updated Branches:
  refs/heads/branch-2 0eab16fde -> c1f5122fa


HBASE-18731 [compat 1-2] Mark protected methods of QuotaSettings that touch 
Protobuf internals as IA.Private

Signed-off-by: Michael Stack 


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/c1f5122f
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/c1f5122f
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/c1f5122f

Branch: refs/heads/branch-2
Commit: c1f5122fab9d5fec52a7346ef71e0776fc3180f6
Parents: 0eab16f
Author: Sean Busbey 
Authored: Thu Sep 21 09:57:39 2017 -0500
Committer: Sean Busbey 
Committed: Thu Sep 21 14:01:02 2017 -0500

--
 .../main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java| 2 ++
 1 file changed, 2 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/c1f5122f/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
index dbea5fb..cf04f92 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
@@ -56,6 +56,7 @@ public abstract class QuotaSettings {
* This is used internally by the Admin client to serialize the quota 
settings
* and send them to the master.
*/
+  @InterfaceAudience.Private
   public static SetQuotaRequest buildSetQuotaRequestProto(final QuotaSettings 
settings) {
 SetQuotaRequest.Builder builder = SetQuotaRequest.newBuilder();
 if (settings.getUserName() != null) {
@@ -76,6 +77,7 @@ public abstract class QuotaSettings {
* the subclass should implement this method to set the specific 
SetQuotaRequest
* properties.
*/
+  @InterfaceAudience.Private
   protected abstract void setupSetQuotaRequest(SetQuotaRequest.Builder 
builder);
 
   protected String ownerToString() {



hbase git commit: HBASE-18731 [compat 1-2] Mark protected methods of QuotaSettings that touch Protobuf internals as IA.Private

2017-09-21 Thread busbey
Repository: hbase
Updated Branches:
  refs/heads/master a6c3c645f -> e39359986


HBASE-18731 [compat 1-2] Mark protected methods of QuotaSettings that touch 
Protobuf internals as IA.Private

Signed-off-by: Michael Stack 


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/e3935998
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/e3935998
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/e3935998

Branch: refs/heads/master
Commit: e39359986c4765946cde30da2957324cb7c9705c
Parents: a6c3c64
Author: Sean Busbey 
Authored: Thu Sep 21 09:57:39 2017 -0500
Committer: Sean Busbey 
Committed: Thu Sep 21 14:00:10 2017 -0500

--
 .../main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java| 2 ++
 1 file changed, 2 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/e3935998/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
index dbea5fb..cf04f92 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/QuotaSettings.java
@@ -56,6 +56,7 @@ public abstract class QuotaSettings {
* This is used internally by the Admin client to serialize the quota 
settings
* and send them to the master.
*/
+  @InterfaceAudience.Private
   public static SetQuotaRequest buildSetQuotaRequestProto(final QuotaSettings 
settings) {
 SetQuotaRequest.Builder builder = SetQuotaRequest.newBuilder();
 if (settings.getUserName() != null) {
@@ -76,6 +77,7 @@ public abstract class QuotaSettings {
* the subclass should implement this method to set the specific 
SetQuotaRequest
* properties.
*/
+  @InterfaceAudience.Private
   protected abstract void setupSetQuotaRequest(SetQuotaRequest.Builder 
builder);
 
   protected String ownerToString() {