/* * Hibernate, Relational Persistence for Idiomatic Java * * License: GNU Lesser General Public License (LGPL), version 2.1 or later. * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. */ package org.hibernate.test.annotations.entityGraph; import java.util.Date; import java.util.Set; /** * @author Etienne Miret */ public class Author { private Long id; private String name; private Date birth; private Set<Book> books; public Author() { super(); } public Long getId() { return id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Date getBirth() { return birth; } public void setBirth(Date birth) { this.birth = birth; } public Set<Book> getBooks() { return books; } public void setBooks(Set<Book> books) { this.books = books; } }