Interface MessageFilter
- All Known Implementing Classes:
BasicMessageFilter,CompositeMessageFilter,HeaderTransformationMessageFilter
public interface MessageFilter
A strategy instance that filters a WebServiceMessage response.
This class provides an additional configuration that can be managed in your Spring's context.
-
Method Summary
Modifier and TypeMethodDescriptionvoidfilterConsumer(org.apache.camel.Exchange exchange, org.springframework.ws.WebServiceMessage response) Calls filter for a consumervoidfilterProducer(org.apache.camel.Exchange exchange, org.springframework.ws.WebServiceMessage response) Calls filter for a producer
-
Method Details
-
filterProducer
void filterProducer(org.apache.camel.Exchange exchange, org.springframework.ws.WebServiceMessage response) Calls filter for a producer- Parameters:
exchange- the exchangeresponse- provided by the producer
-
filterConsumer
void filterConsumer(org.apache.camel.Exchange exchange, org.springframework.ws.WebServiceMessage response) Calls filter for a consumer- Parameters:
exchange- the exchangeresponse- provided by the consumer
-