geomacy commented on this pull request.


> +   @AutoValue.Builder
+   public abstract static class Builder {
+      public abstract Builder destinationCidrBlock(String 
destinationCidrBlock);
+
+      public abstract Builder gatewayId(String gatewayId);
+
+      public abstract Builder state(RouteState state);
+
+      public abstract Builder origin(String origin);
+
+      @Nullable abstract String destinationCidrBlock();
+      @Nullable abstract String gatewayId();
+      @Nullable abstract RouteState state();
+      @Nullable abstract String origin();
+
+      abstract Route autoBuild();

Not sure; I just copied the pattern elsewhere. I'll give it a go!

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/1100#discussion_r116924567

Reply via email to