> +
> +import com.google.common.base.Objects;
> +
> +import java.beans.ConstructorProperties;
> +
> +/**
> + * @author Andrea Turli
> + */
> +public class TagType {
> + private final String keyName;
> + private final String description;
> +
> + @ConstructorProperties({"keyName", "description"} )
> + public TagType(String keyName, String description) {
> + this.keyName = keyName;
> + this.description = description;
Add null checks if the parameters are mandatory.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/296/files#r12882679