> +         return this;
> +      }
> +
> +      public CreateStack build() {
> +         String missing = "";
> +
> +         if (name == null) {
> +            missing += " name";
> +         }
> +
> +
> +         if (template == null && templateUrl == null) {
> +            missing += " template and templateUrl";
> +         }
> +
> +         if (!missing.isEmpty()) {

question... when we send to heat Create Stack/UpdateStack we have to send 
template or templateUrl , So do we want an early validation here or do we want 
heat to fail?

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

Reply via email to