/* * 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.immutable.entitywithmutablecollection; import java.io.Serializable; public class Owner implements Serializable { private long id; private long version; private Plan plan; private String name; public Owner() { super(); } public Owner(String name) { this.name = name; } public long getVersion() { return version; } public void setVersion(long version) { this.version = version; } public String getName() { return name; } public void setName(String name) { this.name = name; } public long getId() { return id; } public void setId(long id) { this.id = id; } public Plan getPlan() { return plan; } public void setPlan(Plan plan) { this.plan = plan; } }