File tree Expand file tree Collapse file tree 5 files changed +16
-14
lines changed
spring-integration-webflux/src/test/java/org/springframework/integration/webflux/config
spring-integration-websocket/src/test/java/org/springframework/integration/websocket/config
spring-integration-ws/src/test/java/org/springframework/integration/ws/config Expand file tree Collapse file tree 5 files changed +16
-14
lines changed Original file line number Diff line number Diff line change 11
11
<si : channel id =" requests" />
12
12
13
13
<beans : bean id =" validator" class =" org.mockito.Mockito" factory-method =" mock" >
14
- <beans : constructor-arg value =" org.springframework.validation.Validator" />
14
+ <beans : constructor-arg value =" org.springframework.validation.Validator" type = " java.lang.Class " />
15
15
</beans : bean >
16
16
17
17
<inbound-channel-adapter id =" reactiveMinimalConfig" channel =" requests" validator =" validator" />
36
36
</inbound-channel-adapter >
37
37
38
38
<beans : bean id =" headerMapper" class =" org.mockito.Mockito" factory-method =" mock" >
39
- <beans : constructor-arg value =" org.springframework.integration.mapping.HeaderMapper" />
39
+ <beans : constructor-arg value =" org.springframework.integration.mapping.HeaderMapper" type = " java.lang.Class " />
40
40
</beans : bean >
41
41
42
42
<beans : bean id =" codecConfigurer" class =" org.mockito.Mockito" factory-method =" mock" >
43
- <beans : constructor-arg value =" org.springframework.http.codec.ServerCodecConfigurer" />
43
+ <beans : constructor-arg value =" org.springframework.http.codec.ServerCodecConfigurer" type = " java.lang.Class " />
44
44
</beans : bean >
45
45
46
46
<beans : bean id =" requestedContentTypeResolver" class =" org.mockito.Mockito" factory-method =" mock" >
47
- <beans : constructor-arg value =" org.springframework.web.reactive.accept.RequestedContentTypeResolver" />
47
+ <beans : constructor-arg value =" org.springframework.web.reactive.accept.RequestedContentTypeResolver"
48
+ type =" java.lang.Class" />
48
49
</beans : bean >
49
50
50
51
<beans : bean id =" reactiveAdapterRegistry" class =" org.springframework.core.ReactiveAdapterRegistry" />
Original file line number Diff line number Diff line change 32
32
</inbound-gateway >
33
33
34
34
<beans : bean id =" headerMapper" class =" org.mockito.Mockito" factory-method =" mock" >
35
- <beans : constructor-arg value =" org.springframework.integration.mapping.HeaderMapper" />
35
+ <beans : constructor-arg value =" org.springframework.integration.mapping.HeaderMapper" type = " java.lang.Class " />
36
36
</beans : bean >
37
37
38
38
<beans : bean id =" codecConfigurer" class =" org.mockito.Mockito" factory-method =" mock" >
39
- <beans : constructor-arg value =" org.springframework.http.codec.ServerCodecConfigurer" />
39
+ <beans : constructor-arg value =" org.springframework.http.codec.ServerCodecConfigurer" type = " java.lang.Class " />
40
40
</beans : bean >
41
41
42
42
<beans : bean id =" requestedContentTypeResolver" class =" org.mockito.Mockito" factory-method =" mock" >
43
- <beans : constructor-arg value =" org.springframework.web.reactive.accept.RequestedContentTypeResolver" />
43
+ <beans : constructor-arg value =" org.springframework.web.reactive.accept.RequestedContentTypeResolver"
44
+ type =" java.lang.Class" />
44
45
</beans : bean >
45
46
46
47
<beans : bean id =" reactiveAdapterRegistry" class =" org.springframework.core.ReactiveAdapterRegistry" />
Original file line number Diff line number Diff line change 34
34
</int-websocket : server-container >
35
35
36
36
<bean id =" handshakeHandler" class =" org.mockito.Mockito" factory-method =" mock" >
37
- <constructor-arg value =" org.springframework.web.socket.server.HandshakeHandler" type =" java.lang.Class" />
37
+ <constructor-arg value =" org.springframework.web.socket.server.HandshakeHandler" type =" java.lang.Class" />
38
38
</bean >
39
39
40
40
<bean id =" handshakeInterceptor" class =" org.mockito.Mockito" factory-method =" mock" >
41
- <constructor-arg value =" org.springframework.web.socket.server.HandshakeInterceptor" type =" java.lang.Class" />
41
+ <constructor-arg value =" org.springframework.web.socket.server.HandshakeInterceptor" type =" java.lang.Class" />
42
42
</bean >
43
43
44
44
<bean id =" sockJsMessageCodec" class =" org.mockito.Mockito" factory-method =" mock" >
45
- <constructor-arg value =" org.springframework.web.socket.sockjs.frame.SockJsMessageCodec" type =" java.lang.Class" />
45
+ <constructor-arg value =" org.springframework.web.socket.sockjs.frame.SockJsMessageCodec" type =" java.lang.Class" />
46
46
</bean >
47
47
48
48
<bean id =" decoratorFactory"
57
57
use-broker =" true" />
58
58
59
59
<bean id =" webSocketClient" class =" org.mockito.Mockito" factory-method =" mock" >
60
- <constructor-arg value =" org.springframework.web.socket.client.WebSocketClient" type =" java.lang.Class" />
60
+ <constructor-arg value =" org.springframework.web.socket.client.WebSocketClient" type =" java.lang.Class" />
61
61
</bean >
62
62
63
63
<int-websocket : client-container id =" clientWebSocketContainer"
Original file line number Diff line number Diff line change 36
36
</bean >
37
37
38
38
<bean id =" jmsConnectionFactory" class =" org.mockito.Mockito" factory-method =" mock" >
39
- <constructor-arg value =" jakarta.jms.ConnectionFactory" />
39
+ <constructor-arg value =" jakarta.jms.ConnectionFactory" type = " java.lang.Class " />
40
40
</bean >
41
41
42
42
<!-- Email Transport-->
70
70
</bean >
71
71
72
72
<bean id =" xmppConnection" class =" org.mockito.Mockito" factory-method =" mock" >
73
- <constructor-arg value =" org.jivesoftware.smack.XMPPConnection" />
73
+ <constructor-arg value =" org.jivesoftware.smack.XMPPConnection" type = " java.lang.Class " />
74
74
</bean >
75
75
76
76
</beans >
Original file line number Diff line number Diff line change 45
45
header-mapper=" testHeaderMapper" />
46
46
47
47
<bean id =" marshaller" class =" org.mockito.Mockito" factory-method =" mock" >
48
- <constructor-arg value =" org.springframework.oxm.support.AbstractMarshaller" />
48
+ <constructor-arg value =" org.springframework.oxm.support.AbstractMarshaller" type = " java.lang.Class " />
49
49
</bean >
50
50
51
51
<bean id =" testHeaderMapper" class =" org.springframework.integration.ws.config.WebServiceInboundGatewayParserTests$TestHeaderMapper" />
You can’t perform that action at this time.
0 commit comments