You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@jclouds.apache.org by Zack Shoylev <no...@github.com> on 2015/06/01 23:43:59 UTC

Re: [jclouds-labs] JCLOUDS-826: Add blob operations (#176)

> + */
> +package org.jclouds.jdbc.entity;
> +
> +import com.google.common.collect.ImmutableList;
> +
> +import javax.persistence.ElementCollection;
> +import javax.persistence.Entity;
> +import javax.persistence.FetchType;
> +import javax.persistence.GeneratedValue;
> +import javax.persistence.GenerationType;
> +import javax.persistence.Id;
> +import java.util.Date;
> +import java.util.List;
> +
> +@Entity
> +public class PayloadEntity {

This might not work, but can we use AutoValue 1.1 for classes such as this one?

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