HBASE-4369 Deprecate HConnection#getZookeeperWatcher in prep for HBASE-1762

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1172025 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2011-09-17 17:42:15 +00:00
parent 9da4ab25b7
commit b86f8dff19
2 changed files with 3 additions and 0 deletions

View File

@ -19,6 +19,7 @@ Release 0.91.0 - Unreleased
HBASE-4233 Update protobuf dependency to 2.4.0a (todd)
HBASE-4299 Update to Avro 1.5.3 and use Avro Maven plugin to generate
Avro classes. (Alejandro Abdelnur)
HBASE-4369 Deprecate HConnection#getZookeeperWatcher in prep for HBASE-1762
BUG FIXES
HBASE-3280 YouAreDeadException being swallowed in HRS getMaster

View File

@ -68,6 +68,8 @@ public interface HConnection extends Abortable, Closeable {
* Retrieve ZooKeeperWatcher used by this connection.
* @return ZooKeeperWatcher handle being used by the connection.
* @throws IOException if a remote or network exception occurs
* @deprecated Removed because it was a mistake exposing zookeeper in this
* interface (ZooKeeper is an implementation detail).
*/
public ZooKeeperWatcher getZooKeeperWatcher() throws IOException;