Package org.apache.servicemix.soap.interceptors.xml

Examples of org.apache.servicemix.soap.interceptors.xml.DomInInterceptor


import org.apache.servicemix.soap.interceptors.xml.DomInInterceptor;

public class WsSecurityPolicy extends AbstractPolicy {

    public WsSecurityPolicy() {
        getInterceptors(Phase.ServerIn).add(new DomInInterceptor());
        getInterceptors(Phase.ServerIn).add(new WsSecurityInInterceptor(this));
       
        getInterceptors(Phase.ServerOut).add(new WsSecurityOutInterceptor(this));
    }
View Full Code Here

TOP

Related Classes of org.apache.servicemix.soap.interceptors.xml.DomInInterceptor

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.