> + 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.
Done.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/97/files#r20608786