/* * Hibernate Search, full-text search for your domain model * * 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.search.test.embedded.graph; import java.io.Serializable; import java.util.HashSet; import java.util.Set; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.OneToMany; import org.hibernate.search.annotations.ContainedIn; import org.hibernate.search.annotations.IndexedEmbedded; @Entity public class Event implements Serializable { private Long id; private Set<ParentOfBirthEvent> parentsOf = new HashSet<ParentOfBirthEvent>(); private Set<Person> children = new HashSet<Person>(); @Id @GeneratedValue public Long getId() { return id; } public void setId(Long id) { this.id = id; } @IndexedEmbedded @OneToMany(mappedBy = "event") public Set<ParentOfBirthEvent> getParentsOf() { return parentsOf; } public void setParentsOf(Set<ParentOfBirthEvent> parentsOf) { this.parentsOf = parentsOf; } @ContainedIn @OneToMany(mappedBy = "birthEvent") public Set<Person> getChildren() { return children; } public void setChildren(Set<Person> children) { this.children = children; } }