Package org.apache.camel.component.file

Examples of org.apache.camel.component.file.GenericFileExchange


        super(endpoint, operations);
    }

    @SuppressWarnings("unchecked")
    public void process(Exchange exchange) throws Exception {
        GenericFileExchange remoteExchange = (GenericFileExchange) getEndpoint().createExchange(exchange);
        processExchange(remoteExchange);
        ExchangeHelper.copyResults(exchange, remoteExchange);
    }
View Full Code Here


        return name;
    }

    @SuppressWarnings("unchecked")
    public void process(Exchange exchange) throws Exception {
        GenericFileExchange remoteExchange = (GenericFileExchange) getEndpoint().createExchange(exchange);
        processExchange(remoteExchange);
        ExchangeHelper.copyResults(exchange, remoteExchange);
    }
View Full Code Here

TOP

Related Classes of org.apache.camel.component.file.GenericFileExchange

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.