Return-Path: X-Original-To: apmail-accumulo-commits-archive@www.apache.org Delivered-To: apmail-accumulo-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 2DD12F9ED for ; Mon, 6 May 2013 16:36:10 +0000 (UTC) Received: (qmail 88345 invoked by uid 500); 6 May 2013 16:36:10 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 88319 invoked by uid 500); 6 May 2013 16:36:10 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 88312 invoked by uid 99); 6 May 2013 16:36:10 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 May 2013 16:36:10 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 May 2013 16:36:09 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 08EB623888CD; Mon, 6 May 2013 16:35:49 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1479633 - /accumulo/trunk/server/src/main/java/org/apache/accumulo/server/mini/MiniAccumuloCluster.java Date: Mon, 06 May 2013 16:35:48 -0000 To: commits@accumulo.apache.org From: kturner@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130506163549.08EB623888CD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: kturner Date: Mon May 6 16:35:48 2013 New Revision: 1479633 URL: http://svn.apache.org/r1479633 Log: ACCUMULO-1367 Added two methods back that were removed from public API and added since tag to new method Modified: accumulo/trunk/server/src/main/java/org/apache/accumulo/server/mini/MiniAccumuloCluster.java Modified: accumulo/trunk/server/src/main/java/org/apache/accumulo/server/mini/MiniAccumuloCluster.java URL: http://svn.apache.org/viewvc/accumulo/trunk/server/src/main/java/org/apache/accumulo/server/mini/MiniAccumuloCluster.java?rev=1479633&r1=1479632&r2=1479633&view=diff ============================================================================== --- accumulo/trunk/server/src/main/java/org/apache/accumulo/server/mini/MiniAccumuloCluster.java (original) +++ accumulo/trunk/server/src/main/java/org/apache/accumulo/server/mini/MiniAccumuloCluster.java Mon May 6 16:35:48 2013 @@ -252,6 +252,22 @@ public class MiniAccumuloCluster { } /** + * @return Accumulo instance name + */ + + public String getInstanceName() { + return config.getInstanceName(); + } + + /** + * @return zookeeper connection string + */ + + public String getZooKeepers() { + return config.getZooKeepers(); + } + + /** * Stops Accumulo and Zookeeper processes. If stop is not called, there is a shutdown hook that is setup to kill the processes. However its probably best to * call stop in a finally block as soon as possible. * @@ -273,6 +289,11 @@ public class MiniAccumuloCluster { lw.flush(); } + /** + * + * @since 1.6.0 + */ + public MiniAccumuloConfig getConfig() { return config; }