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));
}