/* * 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 java.util.ArrayList; import java.util.List; import javax.persistence.CascadeType; import javax.persistence.Column; 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.JoinTable; import javax.persistence.ManyToMany; import javax.persistence.Table; 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 = "consumer") public class Consumer { @Id() @GeneratedValue(strategy = GenerationType.AUTO) private Long consumerId; @Column(length = 255) private String name; @ManyToMany(cascade = { CascadeType.MERGE, CascadeType.REFRESH, CascadeType.PERSIST }, fetch = FetchType.LAZY) @JoinTable(name = "consumer_catalog", joinColumns = @JoinColumn(name = "consumerId"), inverseJoinColumns = @JoinColumn(name = "catalogId")) private List<Catalog> catalogs = new ArrayList<Catalog>(); public Long getConsumerId() { return consumerId; } public void setConsumerId(Long consumerId) { this.consumerId = consumerId; } public String getName() { return name; } public void setName(String name) { this.name = name; } public List<Catalog> getCatalogs() { return catalogs; } public void setCatalogs(List<Catalog> catalogs) { this.catalogs = catalogs; } }