>  
>  /**
>   * Implementation of the <code>HttpCommandExecutorService</code> that uses 
> the
>   * OkHttp client to support modern HTTP methods such as PATCH.
>   */
>  @Singleton
> -public class OkHttpCommandExecutorService extends 
> JavaUrlHttpCommandExecutorService {
> +public class OkHttpCommandExecutorService extends 
> BaseHttpCommandExecutorService<Request> {
> +
> +   public static final String DEFAULT_USER_AGENT = String.format("jclouds/%s 
> java/%s", JcloudsVersion.get(),
> +         System.getProperty("java.version"));
> +
> +   protected final Supplier<SSLContext> untrustedSSLContextProvider;
> +   protected final Function<URI, Proxy> proxyForURI;
> +   protected final HostnameVerifier verifier;
> +   @Inject(optional = true)

Sure! My plan is to have the driver working without changing the basic 
behaviour, and then address the SSL improvements in a separate PR. Sound good?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/617/files#r20973444

Reply via email to