> +import java.util.List;
> +import java.util.Set;
> +
> +import org.jclouds.javax.annotation.Nullable;
> +import org.jclouds.json.SerializedNames;
> +import org.jclouds.openstack.v2_0.domain.Link;
> +
> +import com.google.auto.value.AutoValue;
> +import com.google.inject.name.Named;
> +
> +/**
> + * Representation of an OpenStack Poppy Service.
> + */
> +@AutoValue
> +public abstract class Service {
> + @Named("id") @Nullable public abstract String getId();
Is the `@Named` annotation needed here?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/179/files#r25981957