1 package org.hibernate.test.cut; 3 4 7 public class Transaction { 8 9 private Long id; 10 private String description; 11 private MonetoryAmount value; 12 13 public String getDescription() { 14 return description; 15 } 16 17 public void setDescription(String description) { 18 this.description = description; 19 } 20 21 public Long getId() { 22 return id; 23 } 24 25 public void setId(Long id) { 26 this.id = id; 27 } 28 29 public MonetoryAmount getValue() { 30 return value; 31 } 32 33 public void setValue(MonetoryAmount value) { 34 this.value = value; 35 } 36 37 } 38 | Popular Tags |