/* * 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.optimizations; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.Table; import org.hibernate.annotations.LazyToOne; import org.hibernate.annotations.LazyToOneOption; import org.hibernate.annotations.NaturalId; import org.hibernate.annotations.Proxy; /** * HSEARCH-679 - verify that updates to collections that are not indexed do not trigger indexing. * * @author Tom Waterhouse */ @Entity @Proxy(lazy = false) @Table(name = "catalog_item") public class CatalogItem { public CatalogItem() { } @Id() @GeneratedValue(strategy = GenerationType.AUTO) private Long catalogItemId; @ManyToOne(fetch = FetchType.LAZY, targetEntity = Item.class) @JoinColumn(name = "itemId") @LazyToOne(LazyToOneOption.PROXY) @NaturalId private Item item; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "catalogId") @NaturalId private Catalog catalog; public Long getCatalogItemId() { return catalogItemId; } public void setCatalogItemId(Long catalogItemId) { this.catalogItemId = catalogItemId; } public Item getItem() { return item; } public void setItem(Item item) { this.item = item; } public Catalog getCatalog() { return catalog; } public void setCatalog(Catalog catalog) { this.catalog = catalog; } }