public class MyComponent {
public Object process(@Payload Document doc,
@OutboundAttachments Map<String, DataHandler> outAttachments) {
// do stuff
}
}
@OutboundAttachments
This parameter annotation is used to inject a attachments map into your component or transformer that can be used to write attachments to an outgoing messaging without having to deal with the org.mule.api.message.MuleMessage
directly. This makes your code more portable and easier to test in isolation.
There are no parameters for this annotation and the parameter must be java.util.Map<String, DataHandler>
. Any outbound attachments set by previous elements in a Flow will be accessible and writable in this map.