/* * 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.annotations.xml.ejb3; public class Entity1 { Entity2 field1; public Entity2 getField1() { return field1; } public void setField1(Entity2 field1) { this.field1 = field1; } }