/* * 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.jpa.test.lock; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.Table; import static javax.persistence.FetchType.LAZY; /** * @author Andrea Boriero */ @Entity @Table(name = "Person") public class Person { private Long id; private Person parent; public Person() { } @Id @GeneratedValue public Long getId() { return id; } public void setId(Long id) { this.id = id; } @ManyToOne(fetch = LAZY) @JoinColumn(name = "parentId", insertable = false, updatable = false) public Person getParent() { return parent; } public void setParent(Person parent) { this.parent = parent; } }