Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 28558 invoked from network); 20 Jun 2008 13:47:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 Jun 2008 13:47:48 -0000 Received: (qmail 65206 invoked by uid 500); 20 Jun 2008 13:47:49 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 65152 invoked by uid 500); 20 Jun 2008 13:47:49 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 65143 invoked by uid 99); 20 Jun 2008 13:47:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Jun 2008 06:47:49 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Fri, 20 Jun 2008 13:47:08 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D38AF238898F; Fri, 20 Jun 2008 06:46:56 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r669894 - in /geronimo/gshell/trunk: gshell-api/src/main/java/org/apache/geronimo/gshell/commandline/ gshell-rapture/src/main/java/org/apache/geronimo/gshell/rapture/ src/uml/ Date: Fri, 20 Jun 2008 13:46:56 -0000 To: scm@geronimo.apache.org From: jdillon@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080620134656.D38AF238898F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jdillon Date: Fri Jun 20 06:46:56 2008 New Revision: 669894 URL: http://svn.apache.org/viewvc?rev=669894&view=rev Log: Use consistent naming Added: geronimo/gshell/trunk/gshell-api/src/main/java/org/apache/geronimo/gshell/commandline/CommandLineExecutionFailied.java (contents, props changed) - copied, changed from r669867, geronimo/gshell/trunk/gshell-api/src/main/java/org/apache/geronimo/gshell/commandline/CommandExecutionFailied.java Removed: geronimo/gshell/trunk/gshell-api/src/main/java/org/apache/geronimo/gshell/commandline/CommandExecutionFailied.java Modified: geronimo/gshell/trunk/gshell-rapture/src/main/java/org/apache/geronimo/gshell/rapture/DefaultCommandLineExecutor.java geronimo/gshell/trunk/src/uml/GShell.mdxml Copied: geronimo/gshell/trunk/gshell-api/src/main/java/org/apache/geronimo/gshell/commandline/CommandLineExecutionFailied.java (from r669867, geronimo/gshell/trunk/gshell-api/src/main/java/org/apache/geronimo/gshell/commandline/CommandExecutionFailied.java) URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-api/src/main/java/org/apache/geronimo/gshell/commandline/CommandLineExecutionFailied.java?p2=geronimo/gshell/trunk/gshell-api/src/main/java/org/apache/geronimo/gshell/commandline/CommandLineExecutionFailied.java&p1=geronimo/gshell/trunk/gshell-api/src/main/java/org/apache/geronimo/gshell/commandline/CommandExecutionFailied.java&r1=669867&r2=669894&rev=669894&view=diff ============================================================================== --- geronimo/gshell/trunk/gshell-api/src/main/java/org/apache/geronimo/gshell/commandline/CommandExecutionFailied.java (original) +++ geronimo/gshell/trunk/gshell-api/src/main/java/org/apache/geronimo/gshell/commandline/CommandLineExecutionFailied.java Fri Jun 20 06:46:56 2008 @@ -24,10 +24,10 @@ * * @version $Rev$ $Date$ */ -public class CommandExecutionFailied +public class CommandLineExecutionFailied extends Exception { - public CommandExecutionFailied(final Throwable cause) { + public CommandLineExecutionFailied(final Throwable cause) { super(cause); } } \ No newline at end of file Propchange: geronimo/gshell/trunk/gshell-api/src/main/java/org/apache/geronimo/gshell/commandline/CommandLineExecutionFailied.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/gshell/trunk/gshell-api/src/main/java/org/apache/geronimo/gshell/commandline/CommandLineExecutionFailied.java ------------------------------------------------------------------------------ svn:keywords = Date Author Id Revision HeadURL Propchange: geronimo/gshell/trunk/gshell-api/src/main/java/org/apache/geronimo/gshell/commandline/CommandLineExecutionFailied.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: geronimo/gshell/trunk/gshell-rapture/src/main/java/org/apache/geronimo/gshell/rapture/DefaultCommandLineExecutor.java URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-rapture/src/main/java/org/apache/geronimo/gshell/rapture/DefaultCommandLineExecutor.java?rev=669894&r1=669893&r2=669894&view=diff ============================================================================== --- geronimo/gshell/trunk/gshell-rapture/src/main/java/org/apache/geronimo/gshell/rapture/DefaultCommandLineExecutor.java (original) +++ geronimo/gshell/trunk/gshell-rapture/src/main/java/org/apache/geronimo/gshell/rapture/DefaultCommandLineExecutor.java Fri Jun 20 06:46:56 2008 @@ -28,7 +28,7 @@ import org.apache.geronimo.gshell.command.CommandFactory; import org.apache.geronimo.gshell.command.Command; import org.apache.geronimo.gshell.command.CommandResult; -import org.apache.geronimo.gshell.commandline.CommandExecutionFailied; +import org.apache.geronimo.gshell.commandline.CommandLineExecutionFailied; import org.apache.geronimo.gshell.commandline.CommandLine; import org.apache.geronimo.gshell.commandline.CommandLineBuilder; import org.apache.geronimo.gshell.commandline.CommandLineExecutor; @@ -217,7 +217,7 @@ } // Otherwise wrap to preserve the trace - throw new CommandExecutionFailied(t); + throw new CommandLineExecutionFailied(t); } return ref.get(); Modified: geronimo/gshell/trunk/src/uml/GShell.mdxml URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/src/uml/GShell.mdxml?rev=669894&r1=669893&r2=669894&view=diff ============================================================================== --- geronimo/gshell/trunk/src/uml/GShell.mdxml (original) +++ geronimo/gshell/trunk/src/uml/GShell.mdxml Fri Jun 20 06:46:56 2008 @@ -1057,7 +1057,7 @@ - + @@ -2124,8 +2124,8 @@ - - 665, 555, 24, 13 + 659, 555, 37, 13 + creates @@ -10196,7 +10196,7 @@ INFO_PROPERTY INFO_PROPERTY_DESCRIPTION - 20 29 56 59 34 d 32 35 53 4d 98 ab b5 a7 ee c b0 6 da d9 1e 78 97 43 5a aa a8 ed d3 f3 0 d7 f3 2e 89 a a4 4e e5 6 c6 20 71 c1 e9 15 5e a4 c5 db fc 4c aa 7e 36 67 15 41 3b c4 a8 36 10 fa 87 80 dc 7 2c + 20 29 56 59 34 d 32 35 53 4d 98 ab b5 a7 ee c b0 6 da d9 1e 78 97 43 5a aa aa ed d5 f3 0 d7 f3 2e 89 a a4 4e e5 6 c6 20 71 c1 e9 15 5e a4 c5 db fc 4c aa 7e 36 67 15 41 3b c4 a8 36 10 fa 87 80 dc 7 2c