1
2
3
4
5 package net.sf.ehcache.hibernate.domain;
6
7 public class Item {
8 private Long id;
9 private String name;
10 private String description;
11
12 public String getDescription() {
13 return description;
14 }
15 public void setDescription(String description) {
16 this.description = description;
17 }
18 public Long getId() {
19 return id;
20 }
21 public void setId(Long id) {
22 this.id = id;
23 }
24 public String getName() {
25 return name;
26 }
27 public void setName(String name) {
28 this.name = name;
29 }
30 }