hostname=ftp.example.com
port=21
username=your_username
password=your_password
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="...">
<camelContext xmlns="http://camel.apache.org/schema/blueprint">
<route>
<from uri="ftp:myDownload?recursive=true" />
<to uri="file:data/download" />
</route>
</camelContext>
</blueprint>