Skip to content

Commit edb5efa

Browse files
committed
fix @HttpServiceClient example
Signed-off-by: NeatGuyCoding <[email protected]>
1 parent 2489cce commit edb5efa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

framework-docs/modules/ROOT/pages/integration/rest-clients.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1201,12 +1201,12 @@ annotate HTTP interfaces as follows:
12011201
[source,java,indent=0,subs="verbatim,quotes"]
12021202
----
12031203
@HttpServiceClient("echo")
1204-
public class EchoServiceA {
1204+
public interface EchoServiceA {
12051205
// ...
12061206
}
12071207
12081208
@HttpServiceClient("echo")
1209-
public class EchoServiceB {
1209+
public interface EchoServiceB {
12101210
// ...
12111211
}
12121212
----

0 commit comments

Comments
 (0)