> + return this; > + } > + } > + > + private final String id; > + > + @ConstructorProperties({ "token" }) > + protected TokenCredentials(String id) { > + this.id = checkNotNull(id, "id"); > + } > + > + /** > + * @return the token > + */ > + public String getId() { > + return this.id;
[minor] I think in similar places elsewhere we'd just use ``` return id; ``` ? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/433/files#r17579922