org.apache.camel.component.cxf.common.header
Interface MessageHeaderFilter

All Known Implementing Classes:
SoapMessageHeaderFilter

public interface MessageHeaderFilter

Filter the wire message headers from one CXF endpoint to another CXF endpoint


Method Summary
 void filter(org.apache.camel.spi.HeaderFilterStrategy.Direction direction, List<org.apache.cxf.headers.Header> headers)
          This method filters (removes) headers from the given header list.
 List<String> getActivationNamespaces()
           
 

Method Detail

getActivationNamespaces

List<String> getActivationNamespaces()
Returns:
a list of binding name spaces that this relay can service

filter

void filter(org.apache.camel.spi.HeaderFilterStrategy.Direction direction,
            List<org.apache.cxf.headers.Header> headers)
This method filters (removes) headers from the given header list. Out direction refers to processing headers from a Camel message to an CXF message. In direction is the reverse direction.

Parameters:
direction - the direction of the processing
headers - the origin list of headers


Apache Camel