using the bidders auction house uri

This commit is contained in:
reynisson 2021-11-20 22:39:20 +01:00
parent e3768280ac
commit 3b205d80a5

View File

@ -57,9 +57,10 @@ public class AuctionWonEventHttpAdapter implements AuctionWonEventPort {
new Task.ServiceProvider("TODO") new Task.ServiceProvider("TODO")
); );
var bidderAuctionHouseUri = event.getWinningBid().getBidderAuctionHouseUri().getValue().toString();
String body = TaskJsonRepresentation.serialize(task); String body = TaskJsonRepresentation.serialize(task);
LOGGER.info(body); LOGGER.info(body);
var postURI = URI.create(auction.get().getAuctionHouseUri().getValue().toString() + "/taskwinner"); var postURI = URI.create(bidderAuctionHouseUri + "/taskwinner");
HttpRequest postRequest = HttpRequest.newBuilder() HttpRequest postRequest = HttpRequest.newBuilder()
.uri(postURI) .uri(postURI)
.header("Content-Type", TaskJsonRepresentation.MEDIA_TYPE) .header("Content-Type", TaskJsonRepresentation.MEDIA_TYPE)