Author: simonetripodi
Date: Thu Jun 2 19:39:01 2011
New Revision: 1130765
URL: http://svn.apache.org/viewvc?rev=1130765&view=rev
Log:
fixed plugin classes references
Modified:
commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/compound.xml
commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/substitute.xml
commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/uppercase.xml
Modified:
commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/compound.xml
URL:
http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/compound.xml?rev=1130765&r1=1130764&r2=1130765&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/compound.xml
(original)
+++ commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/compound.xml
Thu Jun 2 19:39:01 2011
@@ -20,9 +20,9 @@
<pipeline>
<source file="input.txt"/>
- <transform plugin-class="CompoundTransform">
- <subtransform plugin-class="CaseTransform" case="lower"/>
- <subtransform plugin-class="SubstituteTransform">
+ <transform
plugin-class="org.apache.commons.digester3.examples.plugins.pipeline.CompoundTransform">
+ <subtransform
plugin-class="org.apache.commons.digester3.examples.plugins.pipeline.CaseTransform"
case="lower"/>
+ <subtransform
plugin-class="org.apache.commons.digester3.examples.plugins.pipeline.SubstituteTransform">
<from>changeme</from>
<to>transformed</to>
</subtransform>
Modified:
commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/substitute.xml
URL:
http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/substitute.xml?rev=1130765&r1=1130764&r2=1130765&view=diff
==============================================================================
---
commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/substitute.xml
(original)
+++
commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/substitute.xml
Thu Jun 2 19:39:01 2011
@@ -21,7 +21,7 @@
<pipeline>
<source file="input.txt"/>
- <transform plugin-class="SubstituteTransform">
+ <transform
plugin-class="org.apache.commons.digester3.examples.plugins.pipeline.SubstituteTransform">
<from>changeme</from>
<to>changed</to>
</transform>
Modified:
commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/uppercase.xml
URL:
http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/uppercase.xml?rev=1130765&r1=1130764&r2=1130765&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/uppercase.xml
(original)
+++ commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/uppercase.xml
Thu Jun 2 19:39:01 2011
@@ -20,7 +20,7 @@
<pipeline>
<source file="input.txt"/>
- <transform plugin-class="CaseTransform" case="upper"/>
+ <transform
plugin-class="org.apache.commons.digester3.examples.plugins.pipeline.CaseTransform"
case="upper"/>
<destination file="output.txt"/>
</pipeline>