1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.kim.bo.role.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_RSP_ATTR_DATA_T")
31 public class ResponsibilityAttributeDataImpl extends KimAttributeDataImpl {
32 @Column(name="RSP_ID")
33 protected String responsibilityId;
34
35 public String getResponsibilityId() {
36 return this.responsibilityId;
37 }
38
39 public void setResponsibilityId(String responsibilityId) {
40 this.responsibilityId = responsibilityId;
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( "responsibilityId", responsibilityId );
52 m.put( "kimTypeId", getKimTypeId() );
53 m.put( "kimAttributeId", getKimAttributeId() );
54 m.put( "attributeValue", getAttributeValue() );
55 return m;
56 }
57 }