> +/**
> + * Represents a url map resource.
> + *
> + * @see <a 
> href="https://developers.google.com/compute/docs/reference/latest/urlMaps"/>
> + * @see <a 
> href="https://developers.google.com/compute/docs/load-balancing/http/url-map"/>
> + */
> +@AutoValue
> +public abstract class UrlMap {
> +
> +   public abstract String id();
> +   public abstract Date creationTimestamp();
> +   public abstract URI selfLink();
> +   public abstract String name();
> +   @Nullable public  abstract String description();
> +   @Nullable public abstract List<HostRule> hostRules();
> +   @Nullable public abstract  List<PathMatcher> pathMatchers();

Fixed the spacing here. Is there a style checker other than the mvn check-style 
I should be running? 

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

Reply via email to