/* * 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: Person.java 5899 2005-02-24 20:08:04Z steveebersole $ package org.hibernate.test.subclassfilter; /** * Implementation of Person. * * @author Steve Ebersole */ public class Person { private Long id; private String name; private String company; private String region; public Person() { } public Person(String name) { this.name = name; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getCompany() { return company; } public void setCompany(String company) { this.company = company; } public String getRegion() { return region; } public void setRegion(String region) { this.region = region; } }