File tree 2 files changed +3
-3
lines changed
api/src/main/java/org/eclipse/microprofile/rest/client/spi
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 24
24
/**
25
25
* Implementations of this interface will be notified when new RestClientBuilder instances are being constructed. This
26
26
* will allow implementations to register providers on the RestClientBuilder, and is intended for global providers. For
27
- * example, a MicroProfile OpenTracing implementation might want to register a ClientRequestFilter to initiate tracing.
27
+ * example, a MicroProfile Telemetry implementation might want to register a ClientRequestFilter to initiate tracing.
28
28
*
29
29
* In order for the RestClientBuilder to call implementations of this interface, the implementation must be specified
30
30
* such that a ServiceLoader can find it - i.e. it must be specified in the <code>
Original file line number Diff line number Diff line change @@ -56,13 +56,13 @@ comma-separated list of headers in the following MicroProfile Config property:
56
56
57
57
`org.eclipse.microprofile.rest.client.propagateHeaders`.
58
58
59
- If the client interface is used within a Jakarta RESTful Web Services context, then the implementation may support injection of `@Context`
59
+ If the client interface is used within a Jakarta RESTful Web Services context, then the implementation may support injection of `@Context`
60
60
fields and methods into custom `ClientHeadersFactory` instances. The injected objects are related to the Jakarta RESTful Web Services context
61
61
(i.e. an injected `UriInfo` will be specific to the Jakarta RESTful Web Services resource's URI, not the URI of the MP Rest Client interface).
62
62
This injection is optional for the implementation, so the only portable injection mechanism of `ClientHeadersFactory`
63
63
instances is `@Inject` when the client is managed by CDI.
64
64
65
65
=== Other MicroProfile Technologies
66
66
67
- Client requests can be automatically traced when using MP OpenTracing . Likewise, requests can be measured using MP Metrics.
67
+ Client requests can be automatically traced when using MP Telemetry . Likewise, requests can be measured using MP Metrics.
68
68
Configuration and usage of these technologies should be defined in their respective specification documents.
You can’t perform that action at this time.
0 commit comments