/* * 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>. */ // $Id:$ package org.hibernate.search.test.id; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import org.hibernate.search.annotations.DocumentId; import org.hibernate.search.annotations.Field; import org.hibernate.search.annotations.Indexed; /** * @author Hardy Ferentschik */ @Entity @Indexed public class Article { @Id @GeneratedValue @Field long articleId; @DocumentId int documentId; @Field String text; public long getArticleId() { return articleId; } public int getDocumentId() { return documentId; } public void setDocumentId(int documentId) { this.documentId = documentId; } public String getText() { return text; } public void setText(String text) { this.text = text; } }