/* * 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.jpa.test.metadata; import javax.persistence.MappedSuperclass; import javax.persistence.Version; /** * @author Emmanuel Bernard */ @MappedSuperclass public class Thing { private Double weight; private Long version; public Double getWeight() { return weight; } public void setWeight(Double weight) { this.weight = weight; } @Version public Long getVersion() { return version; } public void setVersion(Long version) { this.version = version; } }