> + .template(template)
> + .templateUrl(templateUrl)
> + .parameters(parameters)
> + .disableRollback(disableRollback)
> + .files(files)
> + .environment(environment).build();
> + }
> +
> + public static final class Builder {
> +
> + private String name;
> + private String template;
> + private String templateUrl;
> + private Map<String, Object> parameters = new
> ImmutableMap.Builder<String, Object>().build();
> + private boolean disableRollback = true;
> + private Map<String, String> files = new ImmutableMap.Builder<String,
> String>().build();
Yep, leave fields uninitialized, the rest of the code looks good.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/188/files#r28998504