Smooks Execution Report

TODO!!
STARTED
ASSEMBLY_STARTED
PROCESSING_STARTED
<Order> *
<header>
<order-id>
</order-id> *
<status-code>
</status-code> *
<net-amount>
</net-amount> *
<total-amount>
</total-amount> *
<tax>
</tax> *
<date>
</date> *
</header>
<customer-details> *
<username>
</username> *
<name>
<firstname>
</firstname> *
<lastname>
</lastname> *
</name>
<state>
</state> *
</customer-details>
<order-item> *
<position>
</position>
<quantity>
</quantity> *
<product-id>
</product-id> *
<title>
</title> *
<price>
</price> *
</order-item>
<order-item> *
<position>
</position>
<quantity>
</quantity> *
<product-id>
</product-id> *
<title>
</title> *
<price>
</price> *
</order-item>
</Order> *
SERIALIZATION_STARTED
FINISHED
This Smooks Filtering operation produced a JavaResult. The following is an XML serialization of the JavaResult bean Map entries.
orderItemList:
<list>
  <example.model.OrderItem>
    <quantity>1</quantity>
    <productId>364</productId>
    <price>29.98</price>
    <title>The 40-Year-Old Virgin</title>
  </example.model.OrderItem>
  <example.model.OrderItem>
    <quantity>1</quantity>
    <productId>299</productId>
    <price>29.99</price>
    <title>Pulp Fiction</title>
  </example.model.OrderItem>
</list>

header:
<example.model.Header>
  <orderId>1</orderId>
  <orderStatus>0</orderStatus>
  <netAmount>59.97</netAmount>
  <totalAmount>64.92</totalAmount>
  <tax>4.95</tax>
  <date>2006-11-16 02:45:28.0 CST</date>
  <customer>
    <userName>user1</userName>
    <firstName>Harry</firstName>
    <lastName>Fletcher</lastName>
    <state>SD</state>
  </customer>
</example.model.Header>

customer:
<example.model.Customer>
  <userName>user1</userName>
  <firstName>Harry</firstName>
  <lastName>Fletcher</lastName>
  <state>SD</state>
</example.model.Customer>

order:
<example.model.Order>
  <header>
    <orderId>1</orderId>
    <orderStatus>0</orderStatus>
    <netAmount>59.97</netAmount>
    <totalAmount>64.92</totalAmount>
    <tax>4.95</tax>
    <date>2006-11-16 02:45:28.0 CST</date>
    <customer>
      <userName>user1</userName>
      <firstName>Harry</firstName>
      <lastName>Fletcher</lastName>
      <state>SD</state>
    </customer>
  </header>
  <orderItems>
    <example.model.OrderItem>
      <quantity>1</quantity>
      <productId>364</productId>
      <price>29.98</price>
      <title>The 40-Year-Old Virgin</title>
    </example.model.OrderItem>
    <example.model.OrderItem>
      <quantity>1</quantity>
      <productId>299</productId>
      <price>29.99</price>
      <title>Pulp Fiction</title>
    </example.model.OrderItem>
  </orderItems>
</example.model.Order>

orderItem:
<example.model.OrderItem>
  <quantity>1</quantity>
  <productId>299</productId>
  <price>29.99</price>
  <title>Pulp Fiction</title>
</example.model.OrderItem>