org.springframework.ws.config.annotation.WsConfigurerAdapter Java Examples

The following examples show how to use org.springframework.ws.config.annotation.WsConfigurerAdapter. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: TraceeSpringWsConfiguration.java    From tracee with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
/**
 * Provides a WsConfigurerAdapter that adds the traceeEndpointInterceptor to the list of EndpointInterceptors.
 */
@Bean
WsConfigurerAdapter traceeWsConfigurerAdapter(final TraceeEndpointInterceptor traceeEndpointInterceptor) {
	return new WsConfigurerAdapter() {
		@Override
		public void addInterceptors(List<EndpointInterceptor> interceptors) {
			super.addInterceptors(Collections.<EndpointInterceptor>singletonList(traceeEndpointInterceptor));
		}
	};
}