> + }
> + this.sourceObjects = ImmutableList.copyOf(sourceObjects);
> + return this;
> + }
> +
> + public Builder fromNames(List<String> SourceObjectNames){
> + ArrayList<SourceObject> sourceObjects = new
> ArrayList<SourceObject>();
> + for (String name : SourceObjectNames){
> + sourceObjects.add(SourceObject.nameOnly(name));
> + }
> + this.sourceObjects = ImmutableList.copyOf(sourceObjects);
> + return this;
> + }
> +
> + public Builder destination(ObjectTemplate destination){
> + this.destination = destination;
Done.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/150/files#r32880367