use of org.apache.cxf.ws.rm.AbstractRMInterceptor in project cxf by apache.
the class RMSoapInInterceptor method getManager.
private RMManager getManager(SoapMessage message) {
InterceptorChain chain = message.getInterceptorChain();
ListIterator<Interceptor<? extends Message>> it = chain.getIterator();
while (it.hasNext()) {
Interceptor<? extends Message> i = it.next();
if (i instanceof AbstractRMInterceptor) {
return ((AbstractRMInterceptor<? extends Message>) i).getManager();
}
}
return null;
}
Aggregations