Complete configuration support for file binding
-----------------------------------------------
Key: SWITCHYARD-207
URL:
https://issues.jboss.org/browse/SWITCHYARD-207
Project: SwitchYard
Issue Type: Task
Components: component-camel
Reporter: Keith Babo
Fix For: 0.1
The camel file binding currently supports a single configuration value. We need to create
a complete XSD and config model for file binding to see how everything sticks together.
The nice thing is that the framework and initial implementation are already there, so this
is more of an exercise in finding all the configuration values and adding them to the XSD
and config model that are already in place in the Camel component.
The current Camel configuration schema looks like this:
{noformat}
<element name="binding.file" type="camel:CamelFileBindingType"
substitutionGroup="sca:binding"/>
<complexType name="CamelFileBindingType" >
<complexContent>
<extension base="sca:Binding">
<sequence>
<element name="operationSelector"
type="camel:CamelOperationSelectorType"/>
<element name="inputDir" type="string"/>
</sequence>
</extension>
</complexContent>
</complexType>
{noformat}
The complete list of configuration options for file endpoints in Camel can be found here:
http://camel.apache.org/file2.html
It would be nice if we could take a first quick pass at this to get some feedback on how
everything works. If some configuration items turn out to be challenging, let's just
make a note of it and resolve them in a separate JIRA.
--
This message is automatically generated by JIRA.
For more information on JIRA, see:
http://www.atlassian.com/software/jira