1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.kim.bo.group.impl;
17
18 import java.util.LinkedHashMap;
19
20 import javax.persistence.Column;
21 import javax.persistence.Entity;
22 import javax.persistence.Table;
23
24 import org.kuali.rice.kim.bo.types.impl.KimAttributeDataImpl;
25
26
27
28
29 @Entity
30 @Table(name="KRIM_GRP_ATTR_DATA_T")
31 public class GroupAttributeDataImpl extends KimAttributeDataImpl {
32 @Column(name="GRP_ID")
33 protected String groupId;
34
35 public String getGroupId() {
36 return this.groupId;
37 }
38
39 public void setGroupId(String groupId) {
40 this.groupId = groupId;
41 }
42
43
44
45
46 @SuppressWarnings("unchecked")
47 @Override
48 protected LinkedHashMap toStringMapper() {
49 LinkedHashMap m = new LinkedHashMap();
50 m.put( "attrDataId", getAttributeDataId() );
51 m.put( "groupId", getGroupId() );
52 m.put( "kimTypeId", getKimTypeId() );
53 m.put( "kimAttrDefnId", getKimAttributeId() );
54 m.put( "attrValue", getAttributeValue() );
55 return m;
56 }
57 }