Package org.openwms.common.comm.osip.req
Class HttpRequestMessageHandler
java.lang.Object
org.openwms.common.comm.osip.req.HttpRequestMessageHandler
- All Implemented Interfaces:
Function<org.springframework.messaging.support.GenericMessage<RequestMessage>,
Void>
@Profile("!ASYNCHRONOUS")
@OSIPComponent
@RefreshScope
class HttpRequestMessageHandler
extends Object
implements Function<org.springframework.messaging.support.GenericMessage<RequestMessage>,Void>
An AmqpRequestMessageHandler is the handler function to accept
RequestMessage
s
and forward them for processing over HTTP to the routing-service.- Author:
- Heiko Scherrer
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionHttpRequestMessageHandler
(org.springframework.web.client.RestTemplate restTemplate, String routingServiceName, String routingServiceProtocol, String routingServiceUsername, String routingServicePassword) -
Method Summary
Modifier and TypeMethodDescriptionapply
(org.springframework.messaging.support.GenericMessage<RequestMessage> msg)
-
Field Details
-
restTemplate
private final org.springframework.web.client.RestTemplate restTemplate -
routingServiceName
-
routingServiceProtocol
-
routingServiceUsername
-
routingServicePassword
-
-
Constructor Details
-
HttpRequestMessageHandler
HttpRequestMessageHandler(org.springframework.web.client.RestTemplate restTemplate, @Value("${owms.driver.routing-service.name}") String routingServiceName, @Value("${owms.driver.routing-service.protocol}") String routingServiceProtocol, @Value("${owms.driver.routing-service.username}") String routingServiceUsername, @Value("${owms.driver.routing-service.password}") String routingServicePassword)
-
-
Method Details
-
apply
- Specified by:
apply
in interfaceFunction<org.springframework.messaging.support.GenericMessage<RequestMessage>,
Void>
-