/* * 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.annotations.embeddables.nested; import java.util.Date; import javax.persistence.Column; import javax.persistence.Embeddable; /** * @author Thomas Vanstals * @author Steve Ebersole */ @Embeddable public class Investment { private MonetaryAmount amount; private String description; private Date date; public MonetaryAmount getAmount() { return amount; } public void setAmount(MonetaryAmount amount) { this.amount = amount; } @Column(length = 500) public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public Date getDate() { return date; } public void setDate(Date date) { this.date = date; } }