Examples of CustomInfo


Examples of org.talend.esb.sam.agent.message.CustomInfo

        }

        EventTypeEnum eventType = getEventType(message);
        event.setEventType(eventType);

        CustomInfo customInfo = CustomInfo.getOrCreateCustomInfo(message);
        // System.out.println("custom props: " + customInfo);
        event.getCustomInfo().putAll(customInfo);

        return event;
    }
View Full Code Here

Examples of org.talend.esb.sam.agent.message.CustomInfo

       
        InputStream is = new ByteArrayInputStream(TESTCONTENT.getBytes("UTF-8"));
        IOUtils.copy(is, cos);
        message.setContent(CachedOutputStream.class, cos);
       
        CustomInfo customInfo = CustomInfo.getOrCreateCustomInfo(message);
        customInfo.put("key1", "value1");

        return message;
    }
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.