> +
> + public static class Builder extends
> BaseHttpApiMetadata.Builder<ShipyardApi, Builder> {
> +
> + protected Builder() {
> + super(ShipyardApi.class);
> + id("shipyard")
> + .name("Shipyard Remote Docker Management API")
> + .identityName("<service-key>")
> + .credentialName(null)
> +
> .documentation(URI.create("http://shipyard-project.com/docs/api/"))
> + .version("2.0.4")
> + .defaultEndpoint("https://127.0.0.1:8080")
> + .defaultProperties(ShipyardApiMetadata.defaultProperties())
> + .view(typeToken(ComputeServiceContext.class))
> + .defaultModules(ImmutableSet.<Class<? extends Module>>of(
> + OkHttpCommandExecutorServiceModule.class,
Same as commented above. Remove this module if possible. Users will have the
choice of configuring it when creating the context.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/116/files#r21862066