> +      public abstract String name();
> +      @Nullable public abstract String description();
> +      public abstract URI defaultService();
> +      public abstract List<PathRule> pathRules();
> +
> +      @SerializedNames({ "name", "description", "defaultService", 
> "pathRules" })
> +      public static PathMatcher create(String name, @Nullable String 
> description,
> +                     URI defaultService, @Nullable List<PathRule> pathRules) 
> {
> +         return new AutoValue_UrlMap_PathMatcher(name, description, 
> defaultService, pathRules);
> +      }
> +
> +      PathMatcher(){
> +      }
> +
> +      /**
> +       * An urlMap PathRule used to route requests based on the url given.

better to take out quasi-cryptic javadoc. Better to have meaningful, 
well-written, or none at all.

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/97/files#r20598428

Reply via email to