> + public T id(String id) { > + this.id = id; > + return self(); > + } > + > + public TokenCredentials build() { > + return new TokenCredentials(id); > + } > + > + public T fromTokenCredentials(TokenCredentials in) { > + return this > + .id(in.getId()); > + } > + } > + > + private static class ConcreteBuilder extends Builder<ConcreteBuilder> {
@nacx As soon as @pimenas addresses the other feedback, I can roll the Builder changes into this [branch](https://github.com/rackspace/jclouds/tree/fix/cred-builders). --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/433/files#r16923488