Interface JerseyClientConfigurer
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Hook for customizing Jersey client beans. These are used when creating Jersey clients made available through
JerseyClientFactory.
Beans that implement this interface will be picked up and their configure() methods will be run
when the Jersey client is initialized. This allows features to be easily configured for clients.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidconfigure(jakarta.ws.rs.client.Client client) Configure the Jersey client.
-
Method Details
-
configure
void configure(jakarta.ws.rs.client.Client client) Configure the Jersey client.- Parameters:
client- Jersey client to configure.
-