/* * 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: Employee.java 6298 2005-04-03 03:56:22Z oneovthafew $ package org.hibernate.test.unconstrained; /** * @author Gavin King */ public class Employee { private String id; public Employee() { } public Employee(String id) { this.id = id; } public String getId() { return id; } public void setId(String id) { this.id = id; } }