<!-- Creating the input item with the associated source and destination attributes -->
<arc:set attr="input.source" value="/tmp/source/moveme.xml" />
<arc:set attr="input.destination" value="/tmp/destination/moveme.xml" />
<!-- Calling fileMove and passing in the input item -->
<arc:call op="fileMove" item="input">
<!-- Optional: Logging information about the moved file to the application log -->
<arc:set attr="_log.info" value="The file [input.file:source], was moved to [input.file:destination]"/>
</arc:call>