> +
> + public Builder uuid(String uuid) {
> + this.uuid = uuid;
> + return this;
> + }
> +
> + public Jobs build() {
> + return new Jobs(resourceUri, uuid);
> + }
> + }
> +
> + private final String resourceUri;
> + private final String uuid;
> +
> + @ConstructorProperties({
> + "resourceUri", "uuid"
These values must match the names of the fields in the JSON document, so it
should be `"resource_uri"`. This annotation is to tell JSON which fields int he
JSON, and in which order, have to be passed to the constructor.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/67/files#r13220491