You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 28, 2018. It is now read-only.
We are user of the jersey-apache-connector project. The endpoint of the project is the ApacheConnector class which does not allow extending/modification. But in our case we need to be able to modify the Apache ClientBuilder with our own SSL settings (cloud settings) and also we need to do more logic rather than simply call ClientBuilder.build().
The ideal working sample for us is to modify the signature of ApacheConnector to be:
public ApacheConnector(final Client client, final Configuration config, final ClientBuilderModifier builderModifier) {
...................
...................
...................
//Then at the very end, add the following logic.
Hi,
We are user of the jersey-apache-connector project. The endpoint of the project is the ApacheConnector class which does not allow extending/modification. But in our case we need to be able to modify the Apache ClientBuilder with our own SSL settings (cloud settings) and also we need to do more logic rather than simply call ClientBuilder.build().
The ideal working sample for us is to modify the signature of ApacheConnector to be:
...................
...................
...................
//Then at the very end, add the following logic.
}
That way we adds flexibility to the ApacheConnector project.
I have implemented the logic and created a pull request
https://github.com/jersey/jersey/pull/3777
Please kindly review and let me know if I need to anything.
Thanks,
Benjamin
The text was updated successfully, but these errors were encountered: