Package org.apache.camel.impl

Examples of org.apache.camel.impl.DefaultMessage.addAttachment()


                camelMessage.setHeader(property.getName(), property.getValue());
            }
        }
       
        for (String attachmentName : syExchange.getMessage().getAttachmentMap().keySet()) {
            camelMessage.addAttachment(attachmentName,
                    new DataHandler(syExchange.getMessage().getAttachment(attachmentName)));
        }
       
        return camelMessage;
    }
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.