/* * 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.embedded; import javax.persistence.Embeddable; import org.hibernate.search.annotations.Field; import org.hibernate.search.annotations.IndexedEmbedded; import org.hibernate.annotations.Parent; /** * @author Emmanuel Bernard */ @Embeddable public class Owner implements Person { @Field private String name; @Parent @IndexedEmbedded //play the lunatic user private Address address; @Override public String getName() { return name; } @Override public void setName(String name) { this.name = name; } @Override public Address getAddress() { return address; } @Override public void setAddress(Address address) { this.address = address; } }