See: Description
Class | Description |
---|---|
RestClient.RestClientLiteral |
Annotation Type | Description |
---|---|
RegisterRestClient |
A marker annotation to register a rest client at runtime.
|
RestClient |
Use the RestClient qualifier on an injection to point to indicate that this injection point is meant to use an instance
of a Type-Safe Rest Client.
|
@RegisterProvider @Dependent public interface MyClientService { @GET @Path("/myService/{id}") Widget getWidget(@PathParam("id") String id); } ... @ApplicationScoped public class MyBean { @Inject @RestClient MyClientService service; ... }