Package org.apache.servicemix.soap.bindings.soap

Examples of org.apache.servicemix.soap.bindings.soap.SoapInterceptor


            }
        }
        InterceptorChain chain = message.get(InterceptorChain.class);
        for (Interceptor interceptorInstance : chain.getInterceptors()) {
            if (interceptorInstance instanceof SoapInterceptor) {
                SoapInterceptor si = (SoapInterceptor) interceptorInstance;
                serviceRoles.addAll(si.getRoles());
                understoodQNames.addAll(si.getUnderstoodHeaders());
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.servicemix.soap.bindings.soap.SoapInterceptor

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.