Author: DartPeng
Date: 2009-07-03 03:03:50 -0400 (Fri, 03 Jul 2009)
New Revision: 16373
Removed:
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/css/
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/csvtoxml/
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/editojava/
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/editoxml/
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/FileRouterMain.java
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/FileRouterMain1.java
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/InputOrderGenerator.java
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/ToFileRoutingTest.java
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/order-message.xml
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/orderitem-split.ftl
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/smooks-config.xml
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/target/input-message.xml
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/target/orders/
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/javatojava/
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/model/
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/srcmodel/
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/trgmodel/
Log:
JBIDE-4536
Remove the example codes
Deleted:
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/FileRouterMain.java
===================================================================
---
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/FileRouterMain.java 2009-07-03
06:56:02 UTC (rev 16372)
+++
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/FileRouterMain.java 2009-07-03
07:03:50 UTC (rev 16373)
@@ -1,119 +0,0 @@
-/*
- Milyn - Copyright (C) 2006
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public
- License (version 2.1) as published by the Free Software
- Foundation.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-
- See the GNU Lesser General Public License for more details:
-
http://www.gnu.org/licenses/lgpl.txt
-*/
-package example.filerouter;
-
-import java.io.BufferedReader;
-import java.io.IOException;
-import java.io.InputStreamReader;
-import java.util.List;
-
-import javax.xml.transform.stream.StreamResult;
-import javax.xml.transform.stream.StreamSource;
-
-import org.milyn.Smooks;
-import org.milyn.SmooksException;
-import org.milyn.container.ExecutionContext;
-import org.milyn.routing.file.FileListAccessor;
-import org.xml.sax.SAXException;
-
-/**
- * This is a simple example that demonstrates how Smooks can be
- * configured to "route" the output of a transform to file(s).
- *
- * @author <a href="mailto:daniel.bevenius@gmail.com">Daniel
Bevenius</a>
- *
- */
-public class FileRouterMain
-{
- private static final String LINE_SEP = System.getProperty( "line.separator"
);
-
- protected void runSmooksTransform() throws IOException, SAXException,
ClassNotFoundException
- {
- final Smooks smooks = new Smooks(
"example/filerouter/smooks-config.xml" );
- final ExecutionContext executionContext = smooks.createExecutionContext();
-
- // create the source and result
- final StreamSource source = new StreamSource(
FileRouterMain.class.getResourceAsStream("target/input-message.xml" ) );
- final StreamResult result = null;
-
- //executionContext.setEventListener(new
HtmlReportGenerator("target/report.html"));
-
- // perform the transform
- smooks.filter( source, result, executionContext );
-
- // display the output from the transform
- System.out.println( LINE_SEP );
- System.out.println( "List file : [" +
FileListAccessor.getListFileNames( executionContext ) + "]" );
-
- // uncomment to print the files
- printFiles( executionContext );
-
- }
-
- public static void main(String[] args) throws IOException, SAXException,
SmooksException, InterruptedException, ClassNotFoundException
- {
- String fileName = "src/example/filerouter/target/input-message.xml";
- System.out.println(fileName);
- System.out.println();
- String nrofLineItems = pause("Please specify number of order-items to generate in
the input message > ");
- InputOrderGenerator.main( new String[] { fileName, nrofLineItems } );
-
- final FileRouterMain smooksMain = new FileRouterMain();
-
- System.out.println( LINE_SEP );
- System.out.println("input-message.xml needs to be transformed and appended
to a file");
- System.out.println( LINE_SEP );
- pause("Press 'enter' to display the transformed message...");
- smooksMain.runSmooksTransform();
- System.out.println( LINE_SEP );
- pause("That's it ");
- }
-
- /*
- * Can be used to print the list of files and their contents.
- * Beware that this can cause memory issues as the whole list file will be
- * read into memory. This method should only be used with smaller transforms.
- */
- @SuppressWarnings ("unused")
- private void printFiles( ExecutionContext executionContext ) throws IOException,
ClassNotFoundException
- {
- List<String> allListFiles = FileListAccessor.getListFileNames(
executionContext );
- for (String listFile : allListFiles)
- {
- List<String> fileNames = (List<String>)
FileListAccessor.getFileList( executionContext, listFile );
- System.out.println( "Contains [" + fileNames.size() + "]
files");
- for (String fileName : fileNames)
- {
- System.out.println( "fileName : [" + fileName + "]"
);
- }
- }
- }
-
- private static String pause(String message) {
- try {
- BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
- System.out.print("> " + message);
- return in.readLine();
- }
- catch (IOException e)
- {
- e.printStackTrace();
- }
- System.out.println( LINE_SEP );
- return null;
- }
-
-}
\ No newline at end of file
Deleted:
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/FileRouterMain1.java
===================================================================
---
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/FileRouterMain1.java 2009-07-03
06:56:02 UTC (rev 16372)
+++
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/FileRouterMain1.java 2009-07-03
07:03:50 UTC (rev 16373)
@@ -1,78 +0,0 @@
-/*
- Milyn - Copyright (C) 2006
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public
- License (version 2.1) as published by the Free Software
- Foundation.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-
- See the GNU Lesser General Public License for more details:
-
http://www.gnu.org/licenses/lgpl.txt
-*/
-package example.filerouter;
-
-import org.milyn.io.StreamUtils;
-import org.milyn.util.DollarBraceDecoder;
-
-import java.io.File;
-import java.io.FileFilter;
-import java.util.regex.Pattern;
-import java.util.regex.Matcher;
-
-/**
- * Simple file consumer.
- * <p/>
- * Eats the files produced by the Smooks file splitter.
- *
- * @author <a
href="mailto:tom.fennelly@gmail.com">tom.fennelly@gmail.com</a>
- */
-public class FileRouterMain1 {
-
- public static void main(String[] args) throws Exception {
- File fileDir = new File("/splitter-router/target/orders");
- SplitFilenameFilter filter = new SplitFilenameFilter();
-
- fileDir.mkdirs();
- System.out.println(fileDir.getAbsolutePath());
- (new File(fileDir, "order-332.lst")).delete();
- (new File(fileDir, "order-332.lst")).deleteOnExit();
-
- System.out.println("Started!");
- System.out.println("Waiting...\n");
- while (true) {
- File[] files = fileDir.listFiles(filter);
-
- if(files.length > 0) {
- for (File file : files) {
- if(file.getName().endsWith(".xml")) {
- System.out.println("Consuming File: " +
file.getName());
- System.out.println(new String(StreamUtils.readFile(file)));
- System.out.println("\n");
- file.delete();
- }
-
- Thread.sleep(500);
- }
- System.out.println("Waiting...");
- }else{
- break;
- }
-
- Thread.sleep(1000);
- }
- }
-
- public static class SplitFilenameFilter implements FileFilter {
-
- private Pattern regexPattern = Pattern.compile("order-.*.xml");
-
- public boolean accept(File file) {
- Matcher matcher = regexPattern.matcher(file.getName());
- return matcher.matches();
- }
- }
-}
\ No newline at end of file
Deleted:
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/InputOrderGenerator.java
===================================================================
---
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/InputOrderGenerator.java 2009-07-03
06:56:02 UTC (rev 16372)
+++
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/InputOrderGenerator.java 2009-07-03
07:03:50 UTC (rev 16373)
@@ -1,112 +0,0 @@
-package example.filerouter;
-import java.io.File;
-import java.io.FileWriter;
-import java.io.IOException;
-
-/**
- * Simply generates an sample xml
- * </p>
- * Usage: <br>
- * InputOrderGenerator filename <nrOfOrderRows>
- * </br>
- * <pre>
- *Will generate a file that looks like this:
- *<order>
- * <header>
- * <date>Wed Nov 15 13:45:28 EST 2006</date>
- * <customer number="123123">Joe</customer>
- * </header>
- * <order-items>
- * <order-item>
- * <product>111</product>
- * <quantity>2</quantity>
- * <price>8.90</price>
- * </order-item>
- * ...
- * </order-item>
- * </order-items>
- *<order>
- * </pre>
- * The number of order-items is controlled by the 'nrOfOrderRows' argument.
- *
- * @author <a href="mailto:daniel.bevenius@gmail.com">Daniel
Bevenius</a>
- *
- */
-public class InputOrderGenerator
-{
- private static final String LINE_SEP = System.getProperty( "line.separator"
);
-
- public static void main( String[] args ) throws IOException
- {
- if ( args.length != 2 )
- {
- printUsage();
- return;
- }
-
- String fileName = args[0];
- String nrOfOrderItemRows = args[1];
- int nrOfOrderItems = Integer.parseInt( nrOfOrderItemRows );
-
- File file = new File (fileName);
- deleteFile( file );
- FileWriter writer = new FileWriter( file, true );
- writer.write( "<order id='332'>" + LINE_SEP );
- writer.write( "<header>" + LINE_SEP);
- writer.write( "<customer number=\"123\">Joe</customer>"
+ LINE_SEP );
- writer.write( "</header>" + LINE_SEP);
- writer.flush();
- writer.write( "<order-items>" + LINE_SEP );
- System.out.print("Generating " + file.getName() + "...");
- for ( int i = 1 ; i <= nrOfOrderItems ; i ++ )
- {
- writer.write( "<order-item id='" + i + "'>" +
LINE_SEP );
- writer.write( "<product>" + i + "</product>" +
LINE_SEP );
- writer.write( "<quantity>2</quantity>" + LINE_SEP );
- writer.write( "<price>8.80</price>" + LINE_SEP );
- writer.write( "</order-item>" + LINE_SEP );
- writer.flush();
- }
- writer.write( "</order-items>" + LINE_SEP);
- writer.write( "</order>" + LINE_SEP );
- writer.close();
- System.out.println();
- System.out.println("Generated " + file.getName() + " size = [" +
getFileLength( file ) + "]" );
- }
-
- private static String getFileLength( final File file )
- {
- long fileLength = file.length();
- int digits = String.valueOf( fileLength ).length();
- if ( digits < 4 )
- {
- return fileLength + " Byte(s)";
- }
- else if ( digits >= 4 && digits <= 6 )
- {
- return fileLength / 1024 + " KB";
- }
- else
- {
- return fileLength / (1024 * 1024 ) + " MB";
- }
- }
-
- private static void deleteFile( final File file ) throws IOException
- {
- if ( file.exists() )
- {
- boolean delete = file.delete();
- if ( !delete )
- {
- throw new IOException ("Could not delete file [" + file.getAbsolutePath() +
"]" );
- }
- }
- }
-
- public static void printUsage()
- {
- System.err.println( "Usage: InputOrderGenerator filename
<nrOfOrderRows>");
- }
-
-}
Deleted:
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/ToFileRoutingTest.java
===================================================================
---
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/ToFileRoutingTest.java 2009-07-03
06:56:02 UTC (rev 16372)
+++
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/ToFileRoutingTest.java 2009-07-03
07:03:50 UTC (rev 16373)
@@ -1,158 +0,0 @@
-/*
- Milyn - Copyright (C) 2006
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public
- License (version 2.1) as published by the Free Software
- Foundation.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-
- See the GNU Lesser General Public License for more details:
-
http://www.gnu.org/licenses/lgpl.txt
-*/
-package example.filerouter;
-
-import java.io.File;
-import java.io.IOException;
-
-import javax.xml.transform.stream.StreamSource;
-
-import junit.framework.TestCase;
-
-import org.milyn.Smooks;
-import org.milyn.container.ExecutionContext;
-import org.milyn.delivery.Filter;
-import org.xml.sax.SAXException;
-
-/**
- * @author <a
href="mailto:tom.fennelly@gmail.com">tom.fennelly@gmail.com</a>
- */
-public class ToFileRoutingTest extends TestCase {
-
- private File targetDir = new File("src/example/filerouter/target/orders");
- private File file1 = new File(targetDir, "order-231-1.xml");
- private File file2 = new File(targetDir, "order-231-2.xml");
- private File file3 = new File(targetDir, "order-231-3.xml");
- private File file4 = new File(targetDir, "order-231-4.xml");
- private File file5 = new File(targetDir, "order-231-5.xml");
- private File file6 = new File(targetDir, "order-231-6.xml");
- private File file7 = new File(targetDir, "order-231-7.xml");
- private File listFile = new File(targetDir, "order-231.lst");
-
- protected void setUp() throws Exception {
- deleteFiles();
- }
-
- protected void tearDown() throws Exception {
- deleteFiles();
- }
-
- private void deleteFiles() {
- file1.delete();
- file2.delete();
- file3.delete();
- file4.delete();
- file5.delete();
- file6.delete();
- file7.delete();
- listFile.delete();
- }
-
- public void test_dom() throws IOException, SAXException {
- test(Filter.StreamFilterType.DOM);
- }
-
- public void test_sax() throws IOException, SAXException {
- test(Filter.StreamFilterType.SAX);
- }
-
- public void test(Filter.StreamFilterType filterType) throws IOException, SAXException
{
- startSmooksThread(filterType);
-
- // The highWaterMark is set to 3 in the smooks config...
- waitForFile(file1, 5000);
- waitForFile(file2, 5000);
- waitForFile(file3, 5000);
-
- sleep(500);
- // file4 shouldn't be there...
- assertTrue("file4 exists!", !file4.exists());
-
- // delete file1 and file4 should appear then...
- file1.delete();
- waitForFile(file4, 5000);
- // file4 should be there...
- assertTrue("file4 doesn't exists!", file4.exists());
-
- sleep(1000);
- // file5 shouldn't be there...
- assertTrue("file5 exists!", !file5.exists());
-
- // delete file2, file3, file4 and file5, file6 and file7 should appear then...
- file2.delete();
- file3.delete();
- file4.delete();
- sleep(2000);
- waitForFile(file7, 5000);
- assertTrue(file5.exists());
- assertTrue(file6.exists());
- assertTrue(file7.exists());
- assertTrue(listFile.exists());
-
- System.out.println("File router test case succuess!");
- }
-
- private void startSmooksThread(Filter.StreamFilterType filterType) {
- SmooksThread thread = new SmooksThread(filterType);
-
- thread.start();
- while(!thread.running) {
- sleep(100);
- }
- }
-
- private void waitForFile(File file, int maxWait) {
- long start = Math.max(500, System.currentTimeMillis());
-
- while(!file.exists() && (System.currentTimeMillis() < start +
maxWait)) {
- sleep(100);
- }
- }
-
- private void sleep(long duration) {
- try {
- Thread.sleep(duration);
- } catch (InterruptedException e) {
- TestCase.fail(e.getMessage());
- }
- }
-
- private class SmooksThread extends Thread {
- boolean running = false;
- private Filter.StreamFilterType filterType;
-
- public SmooksThread(Filter.StreamFilterType filterType) {
- this.filterType = filterType;
- }
-
- public void run() {
- Smooks smooks = null;
- try {
- smooks = new
Smooks(getClass().getResourceAsStream("smooks-config.xml"));
- } catch (IOException e) {
- TestCase.fail(e.getMessage());
- } catch (SAXException e) {
- TestCase.fail(e.getMessage());
- }
-
- ExecutionContext execCtx = smooks.createExecutionContext();
- //execCtx.setEventListener(new
HtmlReportGenerator("/zap/x.html"));
- Filter.setFilterType(smooks, filterType);
- running = true;
- smooks.filter(new
StreamSource(getClass().getResourceAsStream("order-message.xml")), null,
execCtx);
- }
- }
-}
Deleted:
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/order-message.xml
===================================================================
---
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/order-message.xml 2009-07-03
06:56:02 UTC (rev 16372)
+++
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/order-message.xml 2009-07-03
07:03:50 UTC (rev 16373)
@@ -1,42 +0,0 @@
-<order id="231">
- <header>
- <customer number="123123">Joe</customer>
- </header>
- <order-items>
- <order-item id="1">
- <product>111</product>
- <quantity>1</quantity>
- <price>1.00</price>
- </order-item>
- <order-item id="2">
- <product>222</product>
- <quantity>2</quantity>
- <price>2.00</price>
- </order-item>
- <order-item id="3">
- <product>333</product>
- <quantity>3</quantity>
- <price>3.00</price>
- </order-item>
- <order-item id="4">
- <product>444</product>
- <quantity>4</quantity>
- <price>4.00</price>
- </order-item>
- <order-item id="5">
- <product>555</product>
- <quantity>5</quantity>
- <price>5.00</price>
- </order-item>
- <order-item id="6">
- <product>666</product>
- <quantity>6</quantity>
- <price>6.00</price>
- </order-item>
- <order-item id="7">
- <product>777</product>
- <quantity>7</quantity>
- <price>7.00</price>
- </order-item>
- </order-items>
-</order>
\ No newline at end of file
Deleted:
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/orderitem-split.ftl
===================================================================
---
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/orderitem-split.ftl 2009-07-03
06:56:02 UTC (rev 16372)
+++
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/orderitem-split.ftl 2009-07-03
07:03:50 UTC (rev 16373)
@@ -1,11 +0,0 @@
-<orderitem id="${order.orderItem.itemId}"
order="${order.orderId}">
- <customer>
- <name>${order.customerName}</name>
- <number>${order.customerNumber?c}</number>
- </customer>
- <details>
- <productId>${order.orderItem.productId}</productId>
- <quantity>${order.orderItem.quantity}</quantity>
- <price>${order.orderItem.price}</price>
- </details>
-</orderitem>
\ No newline at end of file
Deleted:
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/smooks-config.xml
===================================================================
---
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/smooks-config.xml 2009-07-03
06:56:02 UTC (rev 16372)
+++
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/smooks-config.xml 2009-07-03
07:03:50 UTC (rev 16373)
@@ -1,52 +0,0 @@
-<?xml version="1.0"?>
-<smooks-resource-list
xmlns="http://www.milyn.org/xsd/smooks-1.1.xsd"
-
xmlns:jb="http://www.milyn.org/xsd/smooks/javabean-1.1.xsd"
-
xmlns:file="http://www.milyn.org/xsd/smooks/file-routing-1.1.xsd"
-
xmlns:ftl="http://www.milyn.org/xsd/smooks/freemarker-1.1.xsd">
-
- <!--
- Filter the message using the SAX Filter (i.e. not DOM, so no
- intermediate DOM, so we can process huge messages...
- -->
- <params>
- <param name="stream.filter.type">SAX</param>
- </params>
-
- <!-- Extract and decode data from the message. Used in the freemarker template
(below).
- Note that we could also use a NodeModel here... -->
- <jb:bindings beanId="order" class="java.util.Hashtable"
createOnElement="order">
- <jb:value property="orderId" decoder="Integer"
data="order/@id"/>
- <jb:value property="customerNumber" decoder="Long"
data="header/customer/@number"/>
- <jb:value property="customerName"
data="header/customer"/>
- <jb:wiring property="orderItem"
beanIdRef="orderItem"/>
- </jb:bindings>
- <jb:bindings beanId="orderItem" class="java.util.Hashtable"
createOnElement="order-item">
- <jb:value property="itemId" decoder="Integer"
data="order-item/@id"/>
- <jb:value property="productId" decoder="Long"
data="order-item/product"/>
- <jb:value property="quantity" decoder="Integer"
data="order-item/quantity"/>
- <jb:value property="price" decoder="Double"
data="order-item/price"/>
- </jb:bindings>
-
- <!-- Create/open a file output stream. This is writen to by the freemarker
template (below).. -->
- <file:outputStream openOnElement="order-item"
resourceName="orderItemSplitStream">
-
<file:fileNamePattern>order-${order.orderId}-${order.orderItem.itemId}.xml</file:fileNamePattern>
-
<file:destinationDirectoryPattern>src/example/filerouter/target/orders</file:destinationDirectoryPattern>
-
<file:listFileNamePattern>order-${order.orderId}.lst</file:listFileNamePattern>
-
- <file:highWaterMark mark="3"/>
- </file:outputStream>
-
- <!--
- Every time we hit the end of an <order-item> element, apply this freemarker
template,
- outputting the result to the "orderItemSplitStream" OutputStream, which is
the file
- output stream configured above.
- -->
- <ftl:freemarker applyOnElement="order-item">
- <ftl:template>example/filerouter/orderitem-split.ftl</ftl:template>
- <ftl:use>
- <!-- Output the templating result to the "orderItemSplitStream"
file output stream... -->
- <ftl:outputTo outputStreamResource="orderItemSplitStream"/>
- </ftl:use>
- </ftl:freemarker>
-
-</smooks-resource-list>
\ No newline at end of file
Deleted:
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/target/input-message.xml
===================================================================
---
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/target/input-message.xml 2009-07-03
06:56:02 UTC (rev 16372)
+++
trunk/smooks/plugins/org.jboss.tools.milyn.smooks1_1_2/src/example/filerouter/target/input-message.xml 2009-07-03
07:03:50 UTC (rev 16373)
@@ -1,12 +0,0 @@
-<order id='332'>
-<header>
-<customer number="123">Joe</customer>
-</header>
-<order-items>
-<order-item id='1'>
-<product>1</product>
-<quantity>2</quantity>
-<price>8.80</price>
-</order-item>
-</order-items>
-</order>