org.springframework.ws.server.EndpointInterceptor Java Examples

The following examples show how to use org.springframework.ws.server.EndpointInterceptor. 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));
		}
	};
}
 
Example #2
Source File: WebServiceConfig.java    From spring-web-services with MIT License 4 votes vote down vote up
@Override
public void addInterceptors(List<EndpointInterceptor> interceptors) {
	interceptors.add(securityInterceptor());
}
 
Example #3
Source File: WebServiceConfig.java    From spring-ws with MIT License 4 votes vote down vote up
@Override
public void addInterceptors(List<EndpointInterceptor> interceptors) {
  // register the LogHttpHeaderEndpointInterceptor
  interceptors.add(new LogHttpHeaderEndpointInterceptor());
}
 
Example #4
Source File: WebServiceConfig.java    From spring-ws with MIT License 4 votes vote down vote up
@Override
public void addInterceptors(List<EndpointInterceptor> interceptors) {
  interceptors.add(serverSecurityInterceptor());
}
 
Example #5
Source File: WebServiceConfig.java    From spring-ws with MIT License 4 votes vote down vote up
@Override
public void addInterceptors(List<EndpointInterceptor> interceptors) {
  interceptors.add(serverSecurityInterceptor());
}
 
Example #6
Source File: SimulatorWebServiceConfigurer.java    From citrus-simulator with Apache License 2.0 2 votes vote down vote up
/**
 * Gets the list of endpoint interceptors.
 *
 * @return
 */
default EndpointInterceptor[] interceptors() {
    return new EndpointInterceptor[0];
}