/* * 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>. */ //$Id: Group.java 6058 2005-03-11 17:05:19Z oneovthafew $ package org.hibernate.test.idbag; /** * @author Gavin King */ public class Group { private String name; Group() {} public Group(String name) { this.name = name; } public String getName() { return name; } void setName(String name) { this.name = name; } }