1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kim.bo.types.impl; |
17 | |
|
18 | |
import org.hibernate.annotations.Type; |
19 | |
import org.kuali.rice.kns.bo.PersistableBusinessObjectBase; |
20 | |
|
21 | |
import javax.persistence.*; |
22 | |
|
23 | |
|
24 | |
|
25 | |
|
26 | |
@Entity |
27 | |
@Table(name="KRIM_TYP_ATTR_T") |
28 | 0 | public class KimTypeAttributeImpl extends PersistableBusinessObjectBase { |
29 | |
|
30 | |
private static final long serialVersionUID = 1L; |
31 | |
|
32 | |
@Id |
33 | |
@Column(name="KIM_TYP_ATTR_ID") |
34 | |
protected String kimTypeAttributeId; |
35 | |
@Column(name="KIM_TYP_ID") |
36 | |
protected String kimTypeId; |
37 | |
@Column(name="KIM_ATTR_DEFN_ID") |
38 | |
protected String kimAttributeId; |
39 | |
@Column(name="SORT_CD") |
40 | |
protected String sortCode; |
41 | |
@Type(type="yes_no") |
42 | |
@Column(name="ACTV_IND") |
43 | |
protected boolean active; |
44 | |
|
45 | |
@OneToOne(targetEntity=KimAttributeImpl.class, fetch = FetchType.EAGER, cascade = { }) |
46 | |
@JoinColumn(name = "KIM_ATTR_DEFN_ID", insertable = false, updatable = false) |
47 | |
protected KimAttributeImpl kimAttribute; |
48 | |
|
49 | |
public KimAttributeImpl getKimAttribute() { |
50 | 0 | return kimAttribute; |
51 | |
} |
52 | |
|
53 | |
public String getKimAttributeId() { |
54 | 0 | return kimAttributeId; |
55 | |
} |
56 | |
|
57 | |
public String getKimTypeAttributeId() { |
58 | 0 | return kimTypeAttributeId; |
59 | |
} |
60 | |
|
61 | |
public String getKimTypeId() { |
62 | 0 | return kimTypeId; |
63 | |
} |
64 | |
|
65 | |
public void setKimTypeAttributeId(String kimTypeAttributeId) { |
66 | 0 | this.kimTypeAttributeId = kimTypeAttributeId; |
67 | 0 | } |
68 | |
|
69 | |
public void setKimAttributeId(String kimAttributeId) { |
70 | 0 | this.kimAttributeId = kimAttributeId; |
71 | 0 | } |
72 | |
|
73 | |
public void setKimTypeId(String kimTypeId) { |
74 | 0 | this.kimTypeId = kimTypeId; |
75 | 0 | } |
76 | |
|
77 | |
|
78 | |
|
79 | |
|
80 | |
public boolean isActive() { |
81 | 0 | return active; |
82 | |
} |
83 | |
|
84 | |
|
85 | |
|
86 | |
|
87 | |
public void setActive(boolean active) { |
88 | 0 | this.active = active; |
89 | 0 | } |
90 | |
|
91 | |
public String getSortCode() { |
92 | 0 | return this.sortCode; |
93 | |
} |
94 | |
|
95 | |
public void setSortCode(String sortCode) { |
96 | 0 | this.sortCode = sortCode; |
97 | 0 | } |
98 | |
|
99 | |
public void setKimAttribute(KimAttributeImpl kimAttribute) { |
100 | 0 | this.kimAttribute = kimAttribute; |
101 | 0 | } |
102 | |
|
103 | |
} |