Package org.apache.camel.component.spring.ws.filter

Examples of org.apache.camel.component.spring.ws.filter.MessageFilter


     * @param parameters
     * @param configuration
     */
    private void configureMessageFilter(Map<String, Object> parameters, SpringWebserviceConfiguration configuration) {

        final MessageFilter globalMessageFilter = EndpointHelper.resolveReferenceParameter(
                                                      getCamelContext(), "messageFilter", MessageFilter.class, false /*not mandatory*/);
        final MessageFilter messageFilter = resolveAndRemoveReferenceParameter(
                                                      parameters, "messageFilter", MessageFilter.class, globalMessageFilter);

        configuration.setMessageFilter(messageFilter);
    }
View Full Code Here

TOP

Related Classes of org.apache.camel.component.spring.ws.filter.MessageFilter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.