1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kim.bo.ui; |
17 | |
|
18 | |
import org.apache.commons.lang.StringUtils; |
19 | |
import org.hibernate.annotations.GenericGenerator; |
20 | |
import org.hibernate.annotations.Parameter; |
21 | |
import org.kuali.rice.kim.bo.types.dto.KimTypeInfo; |
22 | |
import org.kuali.rice.kim.service.KIMServiceLocatorWeb; |
23 | |
|
24 | |
import javax.persistence.*; |
25 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | |
|
32 | |
@IdClass(PersonDocumentGroupId.class) |
33 | |
@Entity |
34 | |
@Table(name="KRIM_PND_GRP_PRNCPL_MT") |
35 | 0 | public class PersonDocumentGroup extends KimDocumentBoActivatableToFromEditableBase { |
36 | |
private static final long serialVersionUID = -1551337026170706411L; |
37 | |
@Id |
38 | |
@GeneratedValue(generator="KRIM_GRP_MBR_ID_S") |
39 | |
@GenericGenerator(name="KRIM_GRP_MBR_ID_S",strategy="org.kuali.rice.core.jpa.spring.RiceNumericStringSequenceStyleGenerator",parameters={ |
40 | |
@Parameter(name="sequence_name",value="KRIM_GRP_MBR_ID_S"), |
41 | |
@Parameter(name="value_column",value="id") |
42 | |
}) |
43 | |
@Column(name="GRP_MBR_ID") |
44 | |
protected String groupMemberId; |
45 | |
@Column(name="GRP_TYPE") |
46 | |
protected String groupType; |
47 | |
|
48 | |
@Column(name="GRP_ID") |
49 | |
protected String groupId; |
50 | |
@Column(name="GRP_NM") |
51 | |
protected String groupName; |
52 | |
@Column(name="NMSPC_CD") |
53 | |
protected String namespaceCode; |
54 | |
@Column(name="PRNCPL_ID") |
55 | |
protected String principalId; |
56 | 0 | @Transient |
57 | |
protected transient KimTypeInfo kimGroupType = new KimTypeInfo(); |
58 | |
@Transient |
59 | |
protected String kimTypeId; |
60 | |
|
61 | |
public String getGroupId() { |
62 | 0 | return this.groupId; |
63 | |
} |
64 | |
|
65 | |
public void setGroupId(String groupId) { |
66 | 0 | this.groupId = groupId; |
67 | 0 | } |
68 | |
|
69 | |
public String getGroupName() { |
70 | 0 | return this.groupName; |
71 | |
} |
72 | |
|
73 | |
public void setGroupName(String groupName) { |
74 | 0 | this.groupName = groupName; |
75 | 0 | } |
76 | |
|
77 | |
public KimTypeInfo getKimGroupType() { |
78 | 0 | if ( kimGroupType == null || !StringUtils.equals( kimGroupType.getKimTypeId(), kimTypeId ) ) { |
79 | 0 | kimGroupType = KIMServiceLocatorWeb.getTypeInfoService().getKimType(kimTypeId); |
80 | |
} |
81 | 0 | return kimGroupType; |
82 | |
} |
83 | |
|
84 | |
public String getKimTypeId() { |
85 | 0 | return this.kimTypeId; |
86 | |
} |
87 | |
|
88 | |
public void setKimTypeId(String kimTypeId) { |
89 | 0 | this.kimTypeId = kimTypeId; |
90 | 0 | } |
91 | |
|
92 | |
public String getGroupMemberId() { |
93 | 0 | return this.groupMemberId; |
94 | |
} |
95 | |
|
96 | |
public void setGroupMemberId(String groupMemberId) { |
97 | 0 | this.groupMemberId = groupMemberId; |
98 | 0 | } |
99 | |
|
100 | |
public String getPrincipalId() { |
101 | 0 | return this.principalId; |
102 | |
} |
103 | |
|
104 | |
public void setPrincipalId(String principalId) { |
105 | 0 | this.principalId = principalId; |
106 | 0 | } |
107 | |
|
108 | |
public String getGroupType() { |
109 | 0 | return this.groupType; |
110 | |
} |
111 | |
|
112 | |
public void setGroupType(String groupType) { |
113 | 0 | this.groupType = groupType; |
114 | 0 | } |
115 | |
|
116 | |
public String getNamespaceCode() { |
117 | 0 | return this.namespaceCode; |
118 | |
} |
119 | |
|
120 | |
public void setNamespaceCode(String namespaceCode) { |
121 | 0 | this.namespaceCode = namespaceCode; |
122 | 0 | } |
123 | |
|
124 | |
|
125 | |
} |