Package com.prancingdonkey.domain

Examples of com.prancingdonkey.domain.LineItem


    @Test
    public void testCanAggregateLineItems() throws Exception {

        String orderId = UUID.getUUID();
        for (int i=0; i<3; i++) {
            LineItem lineItem = new LineItem();
            Map properties = new HashMap();
            properties.put("MULE_CORRELATION_ID",orderId);
            properties.put("MULE_CORRELATION_GROUP_SIZE",3);
            MuleMessage message = new DefaultMuleMessage(lineItem,properties,muleContext);
            muleContext.getClient().dispatch("jms://lineitem.complete",message);
View Full Code Here

TOP

Related Classes of com.prancingdonkey.domain.LineItem

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.