* Post process handler interceptors.
* @param context
*/
protected void configureHandlerInterceptor(ApplicationContext context) {
if (context.containsBean(ENDPOINT_INTERCEPTOR_BEAN_NAME)) {
DelegatingEndpointInterceptor endpointInterceptor = context.getBean(ENDPOINT_INTERCEPTOR_BEAN_NAME, DelegatingEndpointInterceptor.class);
endpointInterceptor.setInterceptors(adaptInterceptors(webServiceServer.getInterceptors()));
}
}