> +import com.google.common.base.Objects.ToStringHelper;
> +import com.google.common.collect.ImmutableMap;
> +
> +/**
> + * An Autoscale Webhook for a specific group and policy.
> + *
> + * @see Group
> + * @see ScalingPolicy
> + * @author Zack Shoylev
> + */
> +public class Webhook {
> + private final String name;
> + private final ImmutableMap<String, Object> metadata;
> +
> + @ConstructorProperties({ "name", "metadata" })
> + protected Webhook(String name, Map<String, Object> metadata) {
Mark metadata as `@Nullable`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/48/files#r7512750