<?xml version="1.0" encoding="utf-8" ?>
<objects xmlns="http://www.springframework.net">
<description>Example chains definitions.</description>
<object id="sampleChain" type="NChain.ChainBase, NChain" >
<constructor-arg name="commands">
<list>
<object name="commandOne"
type="RuntimeInstantiation.App.SampleCommand, RuntimeInstantiation.App" >
<property name="Parameter"
value="sample value of command parameter (sampleChain)" />
</object>
</list>
</constructor-arg>
</object>
<object id="otherChain" type="NChain.ChainBase, NChain" >
<constructor-arg name="commands">
<list>
<object name="commandOne"
type="RuntimeInstantiation.App.SampleCommand, RuntimeInstantiation.App" >
<property name="Parameter"
value="sample value of command parameter (otherChain)" />
</object>
<object name="commandTwo"
type="RuntimeInstantiation.App.SampleCommand, RuntimeInstantiation.App" >
<property name="Parameter"
value="yet another sample value of command parameter (otherChain)" />
</object>
</list>
</constructor-arg>
</object>
</objects>