public UpdateService build()

in openstack-poppy/src/main/java/org/jclouds/openstack/poppy/v1/domain/UpdateService.java [166:191]


      public UpdateService build() {
         String missing = "";
         if (name == null) {
            missing += " name";
         }
         if (domains == null) {
            missing += " domains";
         }
         if (origins == null) {
            missing += " origins";
         }
         if (flavorId == null) {
            missing += " flavorId";
         }
         if (!missing.isEmpty()) {
            throw new IllegalStateException("Missing required properties:" + missing);
         }
         UpdateService result = new AutoValue_UpdateService(
               this.name,
               this.domains,
               this.origins,
               caching != null ? ImmutableList.copyOf(this.caching) : null,
               restrictions != null ? ImmutableList.copyOf(this.restrictions) : null,
               this.flavorId);
         return result;
      }