> + super(new Builder());
> + }
> +
> + protected JdbcApiMetadata(Builder builder) {
> + super(builder);
> + }
> +
> + public static class Builder extends BaseApiMetadata.Builder<Builder> {
> +
> + protected Builder() {
> + id("jdbc")
> + .name("Jdbc BlobStore")
> + .identityName("Unused")
> + .defaultEndpoint("http://localhost/transient")
> + .defaultIdentity("unused")
> + .defaultCredential("unused")
Don't declare this. Let's better keep them `absent()`, which is the default
instead of having an invalid value.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/173/files#r29934045