Package org.apache.camel.example.server.model

Examples of org.apache.camel.example.server.model.IncrementResponse


    }
   
    private static final class IncrementProcessor implements Processor {
        public void process(Exchange exchange) throws Exception {
            IncrementRequest request = exchange.getIn().getBody(IncrementRequest.class);
            IncrementResponse response = new IncrementResponse();
            int result = request.getInput() + 1; // increment input value
            response.setResult(result);
            exchange.getOut().setBody(response);
        }
View Full Code Here

TOP

Related Classes of org.apache.camel.example.server.model.IncrementResponse

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.