jclouds/drivers/okhttp
Andrew Phillips e3d9851216 Up to 2.0.0-SNAPSHOT after the 1.8.0 release 2014-08-05 09:10:24 +02:00
..
src JCLOUDS-546: Remove Javadoc @author annotations 2014-06-07 21:44:54 -07:00
README.md Added OkHttp driver to support modern HTTP verbs 2014-01-13 10:47:39 +01:00
pom.xml Up to 2.0.0-SNAPSHOT after the 1.8.0 release 2014-08-05 09:10:24 +02: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();