/* * Hibernate, Relational Persistence for Idiomatic Java * * 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.test.component.basic2; import java.io.Serializable; import javax.persistence.Embedded; import javax.persistence.Entity; import javax.persistence.Id; /** * @author Steve Ebersole */ @Entity public class Person implements Serializable { private int id; private Name name; public Person() { } public Person(int id, Name name) { this.id = id; this.name = name; } public Person(int id, String firstName, String lastName) { this( id, new Name( firstName, lastName ) ); } @Id public int getId() { return id; } public void setId(int id) { this.id = id; } @Embedded public Name getName() { return name; } public void setName(Name name) { this.name = name; } }