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.
@FunctionalInterface public interface JerseyClientConfigurerHook for customizing Jersey client beans. These are used when creating Jersey clients made available throughJerseyClientFactory.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:
JerseyClientBuilderConfigurer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidconfigure(javax.ws.rs.client.Client client)Configure the Jersey client.
-