Package org.apache.camel.processor

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


    {
        final UnmarshalProcessor unmarshalProcessor = new UnmarshalProcessor(dataFormatter);
        final DefaultExchange exchange = new DefaultExchange(camelContext);
        exchange.getIn().setBody(getCustomerInputStream(CUSTOMER_XML));
       
        unmarshalProcessor.process(exchange);
       
        assertEquals(Customer.class, exchange.getOut().getBody().getClass());
    }
   
    @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.