Return-Path: X-Original-To: apmail-activemq-commits-archive@www.apache.org Delivered-To: apmail-activemq-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 3418F183CC for ; Thu, 25 Jun 2015 19:03:04 +0000 (UTC) Received: (qmail 65794 invoked by uid 500); 25 Jun 2015 19:03:04 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 65699 invoked by uid 500); 25 Jun 2015 19:03:04 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 65683 invoked by uid 99); 25 Jun 2015 19:03:04 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Jun 2015 19:03:04 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id E616AE369C; Thu, 25 Jun 2015 19:03:03 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: clebertsuconic@apache.org To: commits@activemq.apache.org Date: Thu, 25 Jun 2015 19:03:04 -0000 Message-Id: <9b72e959ee244ce482d29e88b90640cc@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/2] activemq-artemis git commit: This closes #50 Adding Browse command and other tweaks to the CLI This closes #50 Adding Browse command and other tweaks to the CLI Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/ab00b7c5 Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/ab00b7c5 Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/ab00b7c5 Branch: refs/heads/master Commit: ab00b7c5739c736680a381562f1e1c12de7ede79 Parents: e332eed aa4a063 Author: Clebert Suconic Authored: Thu Jun 25 15:02:51 2015 -0400 Committer: Clebert Suconic Committed: Thu Jun 25 15:02:51 2015 -0400 ---------------------------------------------------------------------- .../apache/activemq/artemis/cli/Artemis.java | 80 +++++++--- .../activemq/artemis/cli/commands/Action.java | 9 ++ .../artemis/cli/commands/ActionAbstract.java | 78 ++++++++++ .../activemq/artemis/cli/commands/Browse.java | 84 +++++++++++ .../artemis/cli/commands/Configurable.java | 40 +---- .../activemq/artemis/cli/commands/Consumer.java | 14 +- .../activemq/artemis/cli/commands/Create.java | 7 +- .../artemis/cli/commands/DestAbstract.java | 3 - .../artemis/cli/commands/HelpAction.java | 25 ++++ .../activemq/artemis/cli/commands/Producer.java | 9 +- .../artemis/cli/commands/tools/HelpData.java | 25 ++++ .../cli/commands/tools/XmlDataImporter.java | 4 +- .../cli/commands/util/ConsumerThread.java | 146 ++++++++++++++++++- .../activemq/artemis/test/ArtemisTest.java | 49 ++++++- .../artemis/jms/client/ActiveMQMessage.java | 18 +-- .../artemis/core/config/Configuration.java | 4 +- .../core/config/impl/ConfigurationImpl.java | 6 +- .../integration/journal/RelativePathTest.java | 4 +- 18 files changed, 505 insertions(+), 100 deletions(-) ----------------------------------------------------------------------