diff --git a/docs/src/main/asciidoc/rest-client.adoc b/docs/src/main/asciidoc/rest-client.adoc index 434d1a03f6322..1ba3d1cf89cca 100644 --- a/docs/src/main/asciidoc/rest-client.adoc +++ b/docs/src/main/asciidoc/rest-client.adoc @@ -162,7 +162,7 @@ import java.util.Set; public interface ExtensionsService { @GET - Set getById(@QueryParam("id") Integer id); + Set getById(@QueryParam("id") String id); @GET Set getByName(@RestQuery String name); <1> @@ -248,7 +248,7 @@ public interface ExtensionsService { @POST @Consumes(MediaType.APPLICATION_FORM_URLENCODED) - Set postId(@FormParam("id") Integer id); + Set postId(@FormParam("id") String id); @POST @Consumes(MediaType.APPLICATION_FORM_URLENCODED)