/* * 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.session; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.Id; import javax.persistence.ManyToOne; import org.hibernate.search.annotations.DocumentId; import org.hibernate.search.annotations.Field; import org.hibernate.search.annotations.Indexed; import org.hibernate.search.annotations.IndexedEmbedded; /** * @author Emmanuel Bernard */ @Entity @Indexed public class Email { @Id @DocumentId private Long id; @Field private String title; @Field private String body; private String header; @IndexedEmbedded @ManyToOne(fetch = FetchType.LAZY) private Domain domain; public Domain getDomain() { return domain; } public void setDomain(Domain domain) { this.domain = domain; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getBody() { return body; } public void setBody(String body) { this.body = body; } public String getHeader() { return header; } public void setHeader(String header) { this.header = header; } }