Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 906 Bytes

outboundheaders-annotation.adoc

File metadata and controls

18 lines (16 loc) · 906 Bytes

@OutboundHeaders Annotation

This parameter annotation is used to inject a headers map into your component or transformer that can be used to write headers 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, Object>. Any outbound headers set by previous elements in a Flow will be accessible and writable in this map.

public class MyComponent {
    public Object process(@Payload Document doc,
                           @OutboundHeaders Map<String, Object>  outHeaders) {
        // do stuff
    }
}