/* * 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.update; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.OneToOne; import org.hibernate.search.annotations.Analyze; import org.hibernate.search.annotations.Field; import org.hibernate.search.annotations.Indexed; @Entity @Indexed public class SimpleChildEntity { @Id @GeneratedValue private Long id; @OneToOne(mappedBy = "child", optional = false) private SimpleParentEntity parent; protected SimpleChildEntity() { } public SimpleChildEntity(SimpleParentEntity parent) { this.parent = parent; } @Field(analyze = Analyze.NO) public String getParentName() { return parent.getName(); } }