Source code: org/hibernate/test/generated/GeneratedPropertyEntity.java
1 // $Id: GeneratedPropertyEntity.java 7800 2005-08-10 12:13:00Z steveebersole $
2 package org.hibernate.test.generated;
3
4 /**
5 * Implementation of GeneratedPropertyEntity.
6 *
7 * @author Steve Ebersole
8 */
9 public class GeneratedPropertyEntity {
10 private Long id;
11 private String name;
12 private byte[] lastModified;
13
14 public Long getId() {
15 return id;
16 }
17
18 public void setId(Long id) {
19 this.id = id;
20 }
21
22 public String getName() {
23 return name;
24 }
25
26 public void setName(String name) {
27 this.name = name;
28 }
29
30 public byte[] getLastModified() {
31 return lastModified;
32 }
33
34 public void setLastModified(byte[] lastModified) {
35 this.lastModified = lastModified;
36 }
37 }