* A strategy method to lazily create the file strategy
*/
protected FileProcessStrategy createFileStrategy() {
Class<?> factory = null;
try {
FactoryFinder finder = new FactoryFinder("META-INF/services/org/apache/camel/component/");
factory = finder.findClass("file", "strategy.factory.");
} catch (ClassNotFoundException e) {
LOG.debug("'strategy.factory.class' not found", e);
} catch (IOException e) {
LOG.debug("No strategy factory defined in 'META-INF/services/org/apache/camel/component/file'", e);
}