[jboss-svn-commits] JBL Code SVN: r11456 - in labs/jbossesb/trunk/product/samples/quickstarts/helloworld_file_action: src and 7 other directories.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Sun Apr 29 14:01:14 EDT 2007
Author: sebcao
Date: 2007-04-29 14:01:14 -0400 (Sun, 29 Apr 2007)
New Revision: 11456
Added:
labs/jbossesb/trunk/product/samples/quickstarts/helloworld_file_action/src/org/
labs/jbossesb/trunk/product/samples/quickstarts/helloworld_file_action/src/org/jboss/
labs/jbossesb/trunk/product/samples/quickstarts/helloworld_file_action/src/org/jboss/soa/
labs/jbossesb/trunk/product/samples/quickstarts/helloworld_file_action/src/org/jboss/soa/esb/
labs/jbossesb/trunk/product/samples/quickstarts/helloworld_file_action/src/org/jboss/soa/esb/samples/
labs/jbossesb/trunk/product/samples/quickstarts/helloworld_file_action/src/org/jboss/soa/esb/samples/quickstart/
labs/jbossesb/trunk/product/samples/quickstarts/helloworld_file_action/src/org/jboss/soa/esb/samples/quickstart/helloworldfileaction/
labs/jbossesb/trunk/product/samples/quickstarts/helloworld_file_action/src/org/jboss/soa/esb/samples/quickstart/helloworldfileaction/MyAction.java
Modified:
labs/jbossesb/trunk/product/samples/quickstarts/helloworld_file_action/build.xml
labs/jbossesb/trunk/product/samples/quickstarts/helloworld_file_action/jboss-esb-unfiltered.xml
labs/jbossesb/trunk/product/samples/quickstarts/helloworld_file_action/jboss-esb.xml
Log:
JBESB-403
Modified: labs/jbossesb/trunk/product/samples/quickstarts/helloworld_file_action/build.xml
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/helloworld_file_action/build.xml 2007-04-29 17:56:50 UTC (rev 11455)
+++ labs/jbossesb/trunk/product/samples/quickstarts/helloworld_file_action/build.xml 2007-04-29 18:01:14 UTC (rev 11456)
@@ -16,7 +16,7 @@
<target name="runtest" depends="compile"
description="will create a testfile which in turn will trigger the ESB">
<echo>Runs Test File Creator</echo>
- <java fork="yes" classname="quickstart.hw_file_action.test.CreateTestFile" failonerror="true">
+ <java fork="yes" classname="org.jboss.soa.esb.samples.quickstart.helloworldfileaction.test.CreateTestFile" failonerror="true">
<arg value="${jbossesb.inputdir}"/>
<arg value="MyInput.dat"/> <!-- the directory the file should be created in -->
<arg value="Hello World In A File"/> <!-- the file contents -->
Modified: labs/jbossesb/trunk/product/samples/quickstarts/helloworld_file_action/jboss-esb-unfiltered.xml
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/helloworld_file_action/jboss-esb-unfiltered.xml 2007-04-29 17:56:50 UTC (rev 11455)
+++ labs/jbossesb/trunk/product/samples/quickstarts/helloworld_file_action/jboss-esb-unfiltered.xml 2007-04-29 18:01:14 UTC (rev 11456)
@@ -54,7 +54,7 @@
</listeners>
<actions>
<action name="action1"
- class="quickstart.hw_file_action.MyAction"
+ class="org.jboss.soa.esb.samples.quickstart.helloworldfileaction.MyAction"
process="displayMessage,playWithMessage"
/>
</actions>
Modified: labs/jbossesb/trunk/product/samples/quickstarts/helloworld_file_action/jboss-esb.xml
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/helloworld_file_action/jboss-esb.xml 2007-04-29 17:56:50 UTC (rev 11455)
+++ labs/jbossesb/trunk/product/samples/quickstarts/helloworld_file_action/jboss-esb.xml 2007-04-29 18:01:14 UTC (rev 11456)
@@ -54,7 +54,7 @@
</listeners>
<actions>
<action name="action1"
- class="quickstart.hw_file_action.MyAction"
+ class="org.jboss.soa.esb.samples.quickstart.helloworldfileaction.MyAction"
process="displayMessage,playWithMessage"
/>
</actions>
Added: labs/jbossesb/trunk/product/samples/quickstarts/helloworld_file_action/src/org/jboss/soa/esb/samples/quickstart/helloworldfileaction/MyAction.java
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/helloworld_file_action/src/org/jboss/soa/esb/samples/quickstart/helloworldfileaction/MyAction.java (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/helloworld_file_action/src/org/jboss/soa/esb/samples/quickstart/helloworldfileaction/MyAction.java 2007-04-29 18:01:14 UTC (rev 11456)
@@ -0,0 +1,64 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2006, JBoss Inc., and others contributors as indicated
+ * by the @authors tag. All rights reserved.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
+ * (C) 2005-2006,
+ * @author JBoss Inc.
+ */
+package org.jboss.soa.esb.samples.quickstart.helloworldfileaction;
+
+import org.jboss.soa.esb.actions.AbstractActionLifecycle;
+import org.jboss.soa.esb.helpers.ConfigTree;
+import org.jboss.soa.esb.message.Body;
+import org.jboss.soa.esb.message.Message;
+
+public class MyAction extends AbstractActionLifecycle
+{
+
+ protected ConfigTree _config;
+
+ public MyAction(ConfigTree config) { _config = config; }
+
+ public Message noOperation(Message message) { return message; }
+
+ public Message displayMessage(Message message) throws Exception{
+ logHeader();
+ System.out.println("Body: " + new String(message.getBody().getContents()));
+ logFooter();
+ return message;
+ }
+
+ public Message playWithMessage(Message message) throws Exception {
+ Body msgBody = message.getBody();
+ String contents = new String(msgBody.getContents());
+ StringBuffer sb = new StringBuffer();
+ sb.append("\nBEFORE\n");
+ sb.append(contents);
+ sb.append("\nAFTER\n");
+ msgBody.setContents(sb.toString().getBytes());
+ return message;
+ }
+
+ // This makes it easier to read on the console
+ private void logHeader() {
+ System.out.println("\n&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&");
+ }
+ private void logFooter() {
+ System.out.println("&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&\n");
+ }
+
+
+}
\ No newline at end of file
More information about the jboss-svn-commits
mailing list