[jboss-svn-commits] JBL Code SVN: r8621 - labs/jbossesb/trunk/product/samples/quickstarts/helloworld_action/src/quickstart/helloworld_action

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Tue Jan 2 13:03:39 EST 2007


Author: burrsutter
Date: 2007-01-02 13:03:38 -0500 (Tue, 02 Jan 2007)
New Revision: 8621

Modified:
   labs/jbossesb/trunk/product/samples/quickstarts/helloworld_action/src/quickstart/helloworld_action/MyJMSListenerAction.java
Log:
modified to have cleaner output for the console notifier

Modified: labs/jbossesb/trunk/product/samples/quickstarts/helloworld_action/src/quickstart/helloworld_action/MyJMSListenerAction.java
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/helloworld_action/src/quickstart/helloworld_action/MyJMSListenerAction.java	2007-01-02 17:41:58 UTC (rev 8620)
+++ labs/jbossesb/trunk/product/samples/quickstarts/helloworld_action/src/quickstart/helloworld_action/MyJMSListenerAction.java	2007-01-02 18:03:38 UTC (rev 8621)
@@ -32,9 +32,9 @@
 	   EPR theEpr = theCall.getFrom();
 	   String contents = new String(msgBody.getContents());
 	   StringBuffer sb = new StringBuffer();
-	   sb.append("BEFORE\n");
+	   sb.append("\nBEFORE**\n");
 	   sb.append(contents);
-	   sb.append("\nAFTER");
+	   sb.append("\nAFTER**\n");
 	   msgBody.setContents(sb.toString().getBytes());
 	   return message;
    }




More information about the jboss-svn-commits mailing list