Fix @HttpServiceClient example in reference manual
Closes gh-35363 Signed-off-by: NeatGuyCoding <15627489+NeatGuyCoding@users.noreply.github.com>
This commit is contained in:
parent
f64ff2866a
commit
57fa52262e
|
@ -1201,12 +1201,12 @@ annotate HTTP interfaces as follows:
|
||||||
[source,java,indent=0,subs="verbatim,quotes"]
|
[source,java,indent=0,subs="verbatim,quotes"]
|
||||||
----
|
----
|
||||||
@HttpServiceClient("echo")
|
@HttpServiceClient("echo")
|
||||||
public class EchoServiceA {
|
public interface EchoServiceA {
|
||||||
// ...
|
// ...
|
||||||
}
|
}
|
||||||
|
|
||||||
@HttpServiceClient("echo")
|
@HttpServiceClient("echo")
|
||||||
public class EchoServiceB {
|
public interface EchoServiceB {
|
||||||
// ...
|
// ...
|
||||||
}
|
}
|
||||||
----
|
----
|
||||||
|
|
Loading…
Reference in New Issue