Package org.apache.camel.processor

Examples of org.apache.camel.processor.MarshalProcessor.process()


        customer.setAge(35);
        customer.setCountry("USA");
       
        exchange.getIn().setBody(customer, JavaSource.class);
       
        marshalProcessor.process(exchange);
       
        assertXMLEqual(getCustomerXml(CUSTOMER_XML_EXPECTED), exchange.getOut().getBody(String.class));
    }
   
    @Test
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.