See: Description
Annotation Type | Description |
---|---|
RegisterProvider |
When annotation is placed at the interface level of a REST API definition, the providers listed will be registered upon proxying.
|
RegisterProviders |
When annotation is placed at the interface level of a REST API definition, the providers listed will be registered upon proxying.
|
@RegisterProvider(MyMessageBodyReader.class) @RegisterProvider(MyMessageBodyWriter.class) @RegisterProvider(MyClientRequestFilter.class) public interface MyClientService { @GET @Path("/myService/{id}") Widget getWidget(@PathParam("id") String id); }