jclouds/drivers/okhttp
Adrian Cole 6b6af2824f JCLOUDS-534 Avoid runtime incompatibility introduced by Guava's closeQuietly. 2014-10-29 17:02:39 -07:00
..
src JCLOUDS-534 Avoid runtime incompatibility introduced by Guava's closeQuietly. 2014-10-29 17:02:39 -07:00
README.md Added OkHttp driver to support modern HTTP verbs 2014-01-13 10:47:39 +01:00
pom.xml [maven-release-plugin] prepare for next development iteration 2014-10-10 01:06:02 -04:00

README.md

jclouds OkHttp driver

A driver to use the OkHttp (http://square.github.io/okhttp/) client as an HTTP library in jclouds.

This driver adds support for use of modern HTTP verbs such as PATCH in providers and APIs, and also supports SPDY.

To use the driver, you just need to include the OkHttpCommandExecutorServiceModule when creating the context:

ContextBuilder.newBuilder("provider")
    .endpoint("endpoint")
    .credentials("identity", "credential")
    .modules(ImmutableSet.of(new OkHttpCommandExecutorServiceModule()))
    .build();