Javadoc for MessageContext
Hi
I have a message with attachements and the Adapterframework returns a MessageContext and not a ModuleData.
I found the code below within an other thread.
I search for documentation about this object but doesn't find it.
Any suggestions where I can find it or how I handle this object (samplecode) ?
Regards
Gerald
public ModuleData process(
ModuleContext moduleContext,
ModuleData inputModuleData)
throws ModuleException {
ModuleData outputData = null;
try {
MessageContext principalData = (MessageContext) inputModuleData.getPrincipalData();
Message message = (Message) principalData.getMessage();
DefaultItem defaultItem = (DefaultItem) message.getBodyItems().nextElement();
String data = defaultItem.getData();