/* * 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.query.explain; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.GeneratedValue; import org.hibernate.search.annotations.Indexed; import org.hibernate.search.annotations.DocumentId; import org.hibernate.search.annotations.Field; /** * @author Emmanuel Bernard */ @Entity @Indexed public class Dvd { @Id @GeneratedValue @DocumentId private Integer id; @Field private String title; @Field private String description; protected Dvd() { } public Dvd(String title, String description) { this.title = title; this.description = description; } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } }