* @param ep
*/
protected void initializeAnnotationInterceptors(Endpoint ep, Class<?> cls) {
Class<?> seiClass = ((JaxWsServiceFactoryBean)getServiceFactory())
.getJaxWsImplementorInfo().getSEIClass();
AnnotationInterceptors provider;
if (seiClass != null) {
provider = new AnnotationInterceptors(cls, seiClass);
} else {
provider = new AnnotationInterceptors(cls);
}
initializeAnnotationInterceptors(provider, ep);
}