org.apache.camel.component.spring.ws.filter
Interface MessageFilter

All Known Implementing Classes:
BasicMessageFilter

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
 void filterConsumer(org.apache.camel.Exchange exchange, org.springframework.ws.WebServiceMessage consumerResponse)
          Calls filter for a consumer
 void filterProducer(org.apache.camel.Exchange exchange, org.springframework.ws.WebServiceMessage produceRresponse)
          Calls filter for a producer
 

Method Detail

filterProducer

void filterProducer(org.apache.camel.Exchange exchange,
                    org.springframework.ws.WebServiceMessage produceRresponse)
Calls filter for a producer

Parameters:
exchange -
response - provided by the producer

filterConsumer

void filterConsumer(org.apache.camel.Exchange exchange,
                    org.springframework.ws.WebServiceMessage consumerResponse)
Calls filter for a consumer

Parameters:
exchange -
response - provided by the consumer


Apache Camel