Package org.apache.cxf.phase

Examples of org.apache.cxf.phase.AbstractPhaseInterceptor


            Iterator<Interceptor<? extends Message>> iterator = mout.getInterceptorChain().iterator();
            while (iterator.hasNext()) {
                Interceptor<? extends Message> inInterceptor = iterator.next();
                if (inInterceptor instanceof AbstractPhaseInterceptor) {
                    AbstractPhaseInterceptor interceptor = (AbstractPhaseInterceptor)inInterceptor;
                    if (interceptor.getPhase().equals(Phase.PREPARE_SEND)
                        || interceptor.getPhase().equals(Phase.PRE_STREAM)) {
                        // just make sure we keep the right interceptors
                        continue;
                    }
                }
                mout.getInterceptorChain().remove(inInterceptor);
View Full Code Here

TOP

Related Classes of org.apache.cxf.phase.AbstractPhaseInterceptor

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.