-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmpDetails.java
117 lines (94 loc) · 2.38 KB
/
EmpDetails.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
package org.hibernate.dto;
import java.util.Date;
import javax.persistence.AttributeOverride;
import javax.persistence.AttributeOverrides;
import javax.persistence.Basic;
import javax.persistence.Column;
import javax.persistence.Embedded;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Lob;
import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
import javax.persistence.Transient;
@Entity
@Table(name = "EMP_DETAILS")
public class EmpDetails {
/**
* Below is the surrogate key whose values are generated by hibernate
*/
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name="EMP_ID")
private int empId;
/**
* This means create the property as it is by using its default
* hibernate-sql compatibility
*/
@Basic
@Column(name="EMP_NAME")
private String name;
/**
* Stores only the date and ignores the timestamp
*/
@Temporal(TemporalType.DATE)
@Column(name="EMP_DOB")
private Date dob;
/**
* Override default column names set in homeAddress
*/
@Embedded
@AttributeOverrides({
@AttributeOverride(name="street", column=@Column(name="HOME_STREET_NAME")),
@AttributeOverride(name="town", column=@Column(name="HOME_TOWN_NAME"))
})
private Address homeAddress;
@Embedded
private Address officeAddress;
/**
* Mark as transient when you do not want hibernate to store this field in
* db
*/
@Transient
@Column(name="EMP_HOBBY")
private String hobby;
public String getHobby() {
return hobby;
}
public void setHobby(String hobby) {
this.hobby = hobby;
}
public int getEmpId() {
return empId;
}
public void setEmpId(int empId) {
this.empId = empId;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Date getDob() {
return dob;
}
public void setDob(Date dob) {
this.dob = dob;
}
public Address getHomeAddress() {
return homeAddress;
}
public void setHomeAddress(Address homeAddress) {
this.homeAddress = homeAddress;
}
public Address getOfficeAddress() {
return officeAddress;
}
public void setOfficeAddress(Address officeAddress) {
this.officeAddress = officeAddress;
}
}