> @@ -117,8 +118,8 @@ public Builder affinities(List<String> affinities) {
>         * {@inheritDoc}
>         */
>        @Override
> -      public Builder jobs(List<String> jobs) {
> -         this.jobs = ImmutableList.copyOf(jobs);
> +      public Builder jobs(List<Jobs> jobs) {
> +         this.jobs = jobs;

We prefer using an immutable domain model. Could you change it as follows?
```java
this.jobs = ImmutableList.copyOf(jobs);
```


---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/67/files#r13220570

Reply via email to