From 5088754086a8d945e477597fa48e7bd971a1d27b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Andr=C3=A9n?= Date: Fri, 24 Jan 2025 15:44:20 +0100 Subject: [PATCH] fromatting --- .../java/akka/javasdk/http/HttpClientProvider.java | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/akka-javasdk/src/main/java/akka/javasdk/http/HttpClientProvider.java b/akka-javasdk/src/main/java/akka/javasdk/http/HttpClientProvider.java index 53a4e23a2..d757a99b4 100644 --- a/akka-javasdk/src/main/java/akka/javasdk/http/HttpClientProvider.java +++ b/akka-javasdk/src/main/java/akka/javasdk/http/HttpClientProvider.java @@ -15,13 +15,14 @@ public interface HttpClientProvider { /** * Returns a {@link HttpClient} to interact with the specified HTTP service. * - *

If the serviceName is a service name without protocol or domain the client will be configured to connect to - * another service deployed with that name on the same Akka project. The runtime will take care of - * routing requests to the service and keeping the data safe by encrypting the connection between services and identifying - * the client as coming from this service. + *

If the serviceName is a service name without protocol or domain the client will be + * configured to connect to another service deployed with that name on the same Akka project. The + * runtime will take care of routing requests to the service and keeping the data safe by + * encrypting the connection between services and identifying the client as coming from this + * service. * - *

If it is a full dns name prefixed with "http://" or "https://" it will connect to services available on the - * public internet. + *

If it is a full dns name prefixed with "http://" or "https://" it will connect to services + * available on the public internet. */ HttpClient httpClientFor(String serviceName); }