> +com.google.inject.ConfigurationException: Guice configuration errors:
> +
> +1) No implementation for org.jclouds.rackspace.cloudfiles.v1.CloudFilesApi
> was bound.
> + while locating org.jclouds.rackspace.cloudfiles.v1.CloudFilesApi
> + ...
> +```
> +
> +This is caused by a misconfiguration when creating a view or api.
> +
> +{% highlight java %}
> +CloudFilesApi cloudFilesApi = ContextBuilder.newBuilder("openstack-swift")
> + .credentials(username, apiKey)
> + .buildApi(CloudFilesApi.class);
> +{% endhighlight %}
> +
> +The provider String you pass to `ContextBuilder.newBuilder(String)` must
> match the view or api you are creating.
Indicate here which of the code examples is "broken", and which one is correct?
Would it be useful to point readers at the API or provider metadata classes as
a way to verify which ID to use?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-site/pull/94/files#r12256417