/* * 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.cascade.multicircle.jpa.identity; /** * No Documentation */ @javax.persistence.Entity public class EntityG extends AbstractEntity { private static final long serialVersionUID = 325417437L; @javax.persistence.ManyToOne(optional = false) private EntityB b; @javax.persistence.OneToMany(mappedBy = "g") private java.util.Set<EntityF> fCollection = new java.util.HashSet<EntityF>(); public EntityB getB() { return b; } public void setB(EntityB parameter){ this.b = parameter; } public java.util.Set<EntityF> getFCollection() { return fCollection; } public void setFCollection( java.util.Set<EntityF> parameter) { this.fCollection = parameter; } }