Class HttpSystemUpdateMessageHandler
java.lang.Object
org.openwms.common.comm.osip.sysu.HttpSystemUpdateMessageHandler
- All Implemented Interfaces:
Function<org.springframework.messaging.support.GenericMessage<SystemUpdateMessage>,
Void>
@Profile("!ASYNCHRONOUS")
@OSIPComponent
@RefreshScope
class HttpSystemUpdateMessageHandler
extends Object
implements Function<org.springframework.messaging.support.GenericMessage<SystemUpdateMessage>,Void>
A HttpSystemUpdateMessageHandler forwards system updates to the LocationGroup services directly without using the routing service.
- Author:
- Heiko Scherrer
-
Nested Class Summary
Nested Classes -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionHttpSystemUpdateMessageHandler
(org.springframework.web.client.RestTemplate restTemplate, String routingServiceName, String routingServiceProtocol, String routingServiceUsername, String routingServicePassword) -
Method Summary
Modifier and TypeMethodDescriptionapply
(org.springframework.messaging.support.GenericMessage<SystemUpdateMessage> msg)
-
Field Details
-
restTemplate
private final org.springframework.web.client.RestTemplate restTemplate -
routingServiceName
-
routingServiceProtocol
-
routingServiceUsername
-
routingServicePassword
-
-
Constructor Details
-
HttpSystemUpdateMessageHandler
HttpSystemUpdateMessageHandler(org.springframework.web.client.RestTemplate restTemplate, @Value("${owms.driver.server.routing-service.name:routing-service}") String routingServiceName, @Value("${owms.driver.server.routing-service.protocol:http}") String routingServiceProtocol, @Value("${owms.driver.server.routing-service.username:user}") String routingServiceUsername, @Value("${owms.driver.server.routing-service.password:sa}") String routingServicePassword)
-
-
Method Details
-
apply
- Specified by:
apply
in interfaceFunction<org.springframework.messaging.support.GenericMessage<SystemUpdateMessage>,
Void>
-