/* * 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.engine.indexapi; import javax.persistence.Entity; import javax.persistence.Id; import org.hibernate.search.annotations.Field; import org.hibernate.search.annotations.Indexed; import org.hibernate.search.annotations.Store; /** * @author Emmanuel Bernard */ @Entity @Indexed public class Clock { private Integer id; private String brand; public Clock() { } public Clock(Integer id, String brand) { this.id = id; this.brand = brand; } @Field(store = Store.YES) public String getBrand() { return brand; } public void setBrand(String brand) { this.brand = brand; } @Id public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } }