From edb5efaa81bc561d9cc9c55ea4c60e829373eba0 Mon Sep 17 00:00:00 2001 From: NeatGuyCoding <15627489+NeatGuyCoding@users.noreply.github.com> Date: Thu, 21 Aug 2025 17:33:57 +0800 Subject: [PATCH] fix @HttpServiceClient example Signed-off-by: NeatGuyCoding <15627489+NeatGuyCoding@users.noreply.github.com> --- .../modules/ROOT/pages/integration/rest-clients.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework-docs/modules/ROOT/pages/integration/rest-clients.adoc b/framework-docs/modules/ROOT/pages/integration/rest-clients.adoc index d81436315a1a..21a9552395d7 100644 --- a/framework-docs/modules/ROOT/pages/integration/rest-clients.adoc +++ b/framework-docs/modules/ROOT/pages/integration/rest-clients.adoc @@ -1201,12 +1201,12 @@ annotate HTTP interfaces as follows: [source,java,indent=0,subs="verbatim,quotes"] ---- @HttpServiceClient("echo") - public class EchoServiceA { + public interface EchoServiceA { // ... } @HttpServiceClient("echo") - public class EchoServiceB { + public interface EchoServiceB { // ... } ----