package br.com.caelum.guj.model; import java.util.ArrayList; import java.util.List; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.OneToMany; import javax.persistence.Table; import org.hibernate.annotations.Cache; import org.hibernate.annotations.CacheConcurrencyStrategy; @Entity @Table(name = "GUJCategories") @Cache(usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE) public class Category { @Id @GeneratedValue private Long id; @Column(name = "name") private String name; @OneToMany(mappedBy = "category") @Cache(usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE) private List<Article> articles = new ArrayList<Article>(); public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public List<Article> getArticles() { return this.articles; } public void setArticles(List<Article> articles) { this.articles = articles; } }